DK,
I'm not sure if this work on mind, I've already have a select, where on my qeuery. for Example, this is my select statement that I currently have.
SELECT TMS_Cleaned_Data.Week, TMS_Cleaned_Data.Equipment, TMS_Cleaned_Data.[Origin City], TMS_Cleaned_Data.[Destination City], TMS_Cleaned_Data.[Trucking Mode], TMS_Cleaned_Data.[Load Weight], TMS_Cleaned_Data.[Load Distance], TMS_Cleaned_Data.[Total Shipment Charge], TMS_Cleaned_Data.[Allocated Total Charges], TMS_Cleaned_Data.[Allocated Other Charges], TMS_Cleaned_Data.[Allocated Fuel Cost], TMS_Cleaned_Data.[Allocated Base Rate], TMS_Cleaned_Data.[Consolidation Savings], TMS_Cleaned_Data.[Allocated Overwidth Charge Cost], TMS_Cleaned_Data.[Allocated Stop Charge Cost], TMS_Cleaned_Data.[Allocated Tarp Charge Cost], TMS_Cleaned_Data.[Base Rate], TMS_Cleaned_Data.[Destination Country], TMS_Cleaned_Data.[Load Created Date], TMS_Cleaned_Data.[Destination Location], TMS_Cleaned_Data.[Destination PostalCode], TMS_Cleaned_Data.[Destination State], TMS_Cleaned_Data.[Destination Street], TMS_Cleaned_Data.Distance, TMS_Cleaned_Data.[Entered By], TMS_Cleaned_Data.[Load Carrier], TMS_Cleaned_Data.[Load Base Rate], TMS_Cleaned_Data.[Load No#], TMS_Cleaned_Data.[Load Extra Charges], TMS_Cleaned_Data.[Load Total Charge], TMS_Cleaned_Data.[Load Transit Time], TMS_Cleaned_Data.[Load Volume], TMS_Cleaned_Data.[Origin Company Name], TMS_Cleaned_Data.[Origin Country], TMS_Cleaned_Data.[Origin Location], TMS_Cleaned_Data.[Origin State], TMS_Cleaned_Data.[Origin Street], TMS_Cleaned_Data.[Origin Zip], TMS_Cleaned_Data.[Other Charges], TMS_Cleaned_Data.[Shipment carrier], TMS_Cleaned_Data.[Shipment No#], TMS_Cleaned_Data.[Shipment Volume], TMS_Cleaned_Data.[Shipment Weight], TMS_Cleaned_Data.Year, TMS_Cleaned_Data.Month, ([Shipment Weight])/100 AS CWT, ([Total Shipment Charge])/([Distance]) AS [Cost/Mile], ([Total Shipment Charge])/([CWT]) AS [Cost/CWT], ([Total Shipment Charge])/([CWT])/([Distance]) AS [Cost/CWT/Mile], ([Total Shipment Charge]-[ACC]-[Allocated Fuel Cost])/([Distance]) AS CPM_Less_Fsc_Acc, IIf(IsNull([Allocated Overwidth Charge Cost]),0,[Allocated Overwidth Charge Cost])+(IIf(IsNull([Allocated Stop Charge Cost]),0,[Allocated Stop Charge Cost])+(IIf(IsNull([Allocated Tarp Charge Cost]),0,[Allocated Tarp Charge Cost]))) AS ACC, ([Total Shipment Charge]-[ACC]-[Allocated Fuel Cost])/([CWT]) AS Cost_CWT, ([Total Shipment Charge]-[ACC]-[Allocated Fuel Cost])/([Distance])/([CWT]) AS Cost_CWT_Miles_Less_Fsc_Acc, ([Total Shipment Charge]-[ACC]-[Allocated Fuel Cost]) AS LineHaul
FROM TMS_Cleaned_Data
WHERE (((TMS_Cleaned_Data.[Destination City]) In ("BALTIMORE","BRUNSWICK","Calumet City","HESSTON","JACKSON","OXNARD","SAVANNAH","BELOIT","Charleston","East Chicago","Chicago","EDGEWOOD","Gibson City","HOUSTON","LA PORTE","SIOUX CITY","Dupont")) AND ((TMS_Cleaned_Data.[Trucking Mode])<>("Premium")) AND ((TMS_Cleaned_Data.[Total Shipment Charge])>0) AND ((TMS_Cleaned_Data.[Allocated Fuel Cost])>0) AND ((TMS_Cleaned_Data.Distance)>0) AND ((TMS_Cleaned_Data.[Load Carrier]) Not In ("Beloit Will Call","Sunflower Fleet")) AND ((TMS_Cleaned_Data.[Shipment carrier]) Not In ("Beloit Will Call","Sunflower Fleet")) AND ((TMS_Cleaned_Data.[Shipment Weight])>50))
WITH OWNERACCESS OPTION;