Pbaldy,
below is my SQL. If the destination is the same as my origin, then I don't want to see that data. I got the origin right but I don't know how to omit the data where destination is the same as the origin.
SELECT DF_Bills.Locn, DF_Bills.Carr AS SCAC, DF_Bills.Mode, DF_Bills.Pro AS [Bill #], DF_Bills.CkDate AS [Date], DF_Bills.Acct AS Dept, DF_Bills.Paid AS [Amt Paid], DF_Bills.Billed AS Amt, DF_Bills.Fsc, DF_Bills.Acc, DF_Bills.Disc AS Misc, DF_Bills.Wgt AS Weight, DF_Bills.Bol AS BOL, DF_Bills.OrigName, DF_Bills.OrigCity, DF_Bills.OrigSt, DF_Bills.OrigZip AS ZIP, DF_Bills.DestName, DF_Bills.DestCity, DF_Bills.DestSt AS DestState, DF_Bills.DestZip, DF_Bills.IO
FROM DF_Bills
WHERE (((DF_Bills.Locn)<>"AGSC") AND ((DF_Bills.Mode)="TL") AND ((DF_Bills.CkDate)>#1/1/2009#) AND ((DF_Bills.OrigCity) In ("BALTIMORE","DUPONT","EDGEWOOD","HESSTON","JACKSON","LAPORTE")) AND ((DF_Bills.OrigSt)<>"ZZ") AND ((DF_Bills.OrigZip) Is Not Null) AND ((DF_Bills.DestZip) Is Not Null) AND ((DF_Bills.IO)="O"))
ORDER BY DF_Bills.CkDate;