I need to show a subform on my mainform that will list items that are late.
I've made the query that correctly grabs the data I need, I just can't figure out how to make the criteria work the way I want. The relevant fields are:
sblReservationDate
sblNLPDocsReceived
sblNLPDocsSent
Basically, I want it to show me the DocsReceived query if we're more than 2 days past ReservationDate and DocsSent is null.
I have the criteria of DocsReceived as "sblReservationDate>=Date() + 2 And IsNull(sblNLPDocsSent)" (without quotes).
Am I doing this correctly?