I am trying to create a report that will list all documents that have been received but have not been processed with 15 days.
Right now I have 2 dates (dtReceived and dtCompleted, Is Null) in the SQL statement in the report.
I also have a form with a text box (txtDate). The date input on the form should be compared to the dtReceived to see if 15 days have passed and the document has not been completed. I tried this:
DateDiff("d","dtReceived",[Forms]![frm15days]![txtDate])>15
Am I even close?
Right now I have 2 dates (dtReceived and dtCompleted, Is Null) in the SQL statement in the report.
I also have a form with a text box (txtDate). The date input on the form should be compared to the dtReceived to see if 15 days have passed and the document has not been completed. I tried this:
DateDiff("d","dtReceived",[Forms]![frm15days]![txtDate])>15
Am I even close?