this is actually an access database.. but any help is appreciated..I want to pull records from t that are not in t2 and for custID 13920 in between a set date and todays date Select t.unitnumber as Tanknumber, t.CustID, t.indate, t.outdate, t.ctrlnum, t.inrefFrom tbl As t WHERE NOT EXISTS (SELECT * FROM tbl2 as t2 WHERE tbltankinventory.unitnumber = t2.unitnum and t.ctrlnum = t2.ctrlnum)AND t.CustID = '13920' AND t.indate IS Between #" 2/1/2009 & "# And #" & Today & "#)order by unitnumber