G
Guest
I'm trying to write a query which finds all records where the current date is 30 days or more later than the field 'datesent'
WHERE (((tblJob.DateRecieved) Is Null) AND ((tblNonPayment.FirstReminderMade) Is Null) AND ((Date())>[tblJob]![DateSent]+'30'))
this isn't returning any records. Is the query correctly written, can anyone please help?
WHERE (((tblJob.DateRecieved) Is Null) AND ((tblNonPayment.FirstReminderMade) Is Null) AND ((Date())>[tblJob]![DateSent]+'30'))
this isn't returning any records. Is the query correctly written, can anyone please help?