Try this:
Code:
SELECT tblOffices.Ministry, tblOffices.OfficeName, tblOffices.CostCentre, tblOffices.AddressLine1 & vbCrLf & tblOffices.AddressLine2 & vbCrLf & tblOffices.City & " " & tblOffices.PostalCode As FullAddress, tblOffices.SiteManager, tblOffices.SiteManagerPhone, tblOffices.SiteManagerEmail, tblEquipment.SpecialShippingInstructions, tblEmployees.FirstName, tblEmployees.LastName, tblEmployees.Email, tblEquipment.EquipmentType, tblEquipment.EquipmentMake, tblEquipment.EquipmentManufacturer, tblEquipment.EquipmentModel, tblEquipment.EquipmentSerialNumber, tblEquipment.AssetTagNumber, tblEquipment.ComputerName, tblEquipment.LeasedOwnedDesignation, tblEquipment.Lessor, tblEquipment.LeaseSupplementNumber, tblEquipment.LeaseEndDate, tblEquipment.HardwareIntent, tblEquipment.AdditionalInformation
FROM (tblOffices INNER JOIN (tblEquipment INNER JOIN tblAssetts ON tblEquipment.PKEquipmentItemID = tblAssetts.FKEquipmentItemID) ON tblOffices.PKOfficeID = tblEquipment.FKOfficeID) INNER JOIN (tblEmployees INNER JOIN tblOfficeEmployees ON tblEmployees.PKEmployeeID = tblOfficeEmployees.FKEmployeeID) ON (tblEmployees.PKEmployeeID = tblAssetts.FKEmployeeID) AND (tblOffices.PKOfficeID = tblOfficeEmployees.FKOfficeID);
If vbCrLf does not work in the query then use Chr(13) & Chr(11) instead.