G
Guest
Using an access query I am comparing a date field and a time field in two
tables (tblPermit_ss & tblExemptionsInfo). My query displays only records
that do not match. I am using the following query and it works fine.
SELECT fldCompanyName, fldOneWorldNumber, fldBridgeNumber, fldDate, fldTime,
fldLane, fldTagNumber
FROM tblPermit_ss
WHERE (((tblPermit_ss.fldTime) Not In (Select fldTime From
tblExemptionsInfo))) OR (((tblPermit_ss.fldDate) Not In (Select fldDate From
tblExemptionsInfo)));
My problem is; I need to allow for a 15+/- minute window for the time.
HELP!
tables (tblPermit_ss & tblExemptionsInfo). My query displays only records
that do not match. I am using the following query and it works fine.
SELECT fldCompanyName, fldOneWorldNumber, fldBridgeNumber, fldDate, fldTime,
fldLane, fldTagNumber
FROM tblPermit_ss
WHERE (((tblPermit_ss.fldTime) Not In (Select fldTime From
tblExemptionsInfo))) OR (((tblPermit_ss.fldDate) Not In (Select fldDate From
tblExemptionsInfo)));
My problem is; I need to allow for a 15+/- minute window for the time.
HELP!