SELECT PortalData.[Company ID], PortalData.[Start Date], PortalData.[Company Name], tblSupplierLocation.SupplierLocation, PortalData.Status, PortalData.[Address 1], PortalData.[Address 2], PortalData.Town, PortalData.County, PortalData.Postcode, PortalData.[Company Website], PortalData.[Telephone (main office)], PortalData.[Main Contact Firstname], PortalData.[Main Contact Surname], PortalData.[Main Contact Position Held]
FROM (SCCtblAssessedData INNER JOIN PortalData ON SCCtblAssessedData.[Company ID] = PortalData.[Company ID]) INNER JOIN (tblSupplierLocation INNER JOIN tblUKPostcodes ON tblSupplierLocation.SupplierLocationID = tblUKPostcodes.SupplierLocationId) ON SCCtblAssessedData.[SCC Data ID] = tblUKPostcodes.ID
WHERE (((tblSupplierLocation.SupplierLocation) Like "Somerset") AND ((PortalData.Status)="ready" Or (PortalData.Status)="almost ready" Or (PortalData.Status)="fss"));