G
Guest
I am trying to design a query to tell me what reports I have not received for
the week.
I have a table that holds all the reports that are received in the
department. I then have a table that people input the information in when
the report is actually received. I need to be able to pull a date range to
show what reports I have not received for the week. I tried the mismatch
query and I'm not getting any information. Here is what I have so far:
SELECT tblManualWrkListIDFraud.ID, tblManualWrkListIDFraud.REPORTNAME,
tblManualWrkListIDFraud.[RISK LEVEL], tblManualWrkListIDFraud.FREQUENCY
FROM tblManualWrkListIDFraud LEFT JOIN tblIDFraudWorkLogged ON
tblManualWrkListIDFraud.ID = tblIDFraudWorkLogged.ID
WHERE (((tblIDFraudWorkLogged.ID) Is Null));
I also have a date query so that I can pull the date range but am unsure how
to join in into the query above. The date query I have is below:
SELECT tblIDFraudWorkLogged.[REPORT NAME], tblIDFraudWorkLogged.Date
FROM tblIDFraudWorkLogged
WHERE (((tblIDFraudWorkLogged.Date) Between [Enter Start Date: mm/dd/yyyy]
And [Enter Ending Date: mm/dd/yyyy]));
Well hopefully I didn't confuse anyone too much.
the week.
I have a table that holds all the reports that are received in the
department. I then have a table that people input the information in when
the report is actually received. I need to be able to pull a date range to
show what reports I have not received for the week. I tried the mismatch
query and I'm not getting any information. Here is what I have so far:
SELECT tblManualWrkListIDFraud.ID, tblManualWrkListIDFraud.REPORTNAME,
tblManualWrkListIDFraud.[RISK LEVEL], tblManualWrkListIDFraud.FREQUENCY
FROM tblManualWrkListIDFraud LEFT JOIN tblIDFraudWorkLogged ON
tblManualWrkListIDFraud.ID = tblIDFraudWorkLogged.ID
WHERE (((tblIDFraudWorkLogged.ID) Is Null));
I also have a date query so that I can pull the date range but am unsure how
to join in into the query above. The date query I have is below:
SELECT tblIDFraudWorkLogged.[REPORT NAME], tblIDFraudWorkLogged.Date
FROM tblIDFraudWorkLogged
WHERE (((tblIDFraudWorkLogged.Date) Between [Enter Start Date: mm/dd/yyyy]
And [Enter Ending Date: mm/dd/yyyy]));
Well hopefully I didn't confuse anyone too much.