Hello:
I have a monthly report based on a query , grouped by submittal number, that sorts documents by the date they were responded to. The criteria of the SDSRDate (Response date) is set to filter only the previous months responses. The report is grouped by SD number (submitted transmittal number).
However, I would also like to return from the query all those documents that were received in the previous month but not responded to. The response date field for those records would be a null or empty field.
Can I use a "where" statement in the criteria under the received field (SDDateR) that would include a previous month filter but only lists those dates that have null values in the SDSRDate field?
I can't seem to include in my response date (SDSRDate) filtering criteria a statement that returns the previous months response date records whose date values are null (empty) as well.
I would like to include in the report, documents that have not been responded to or are,in other words,outstanding.
I use the following to limit the report to the previous months records. Can I append to this statement to include nulls?
Between DateSerial(Year(Date()),Month(Date()),1) And DateAdd("d",-1,DateSerial(Year(Date()),Month(DateAdd("m",-1,Date())),1))
Thank you for your time and help in advance.
I have a monthly report based on a query , grouped by submittal number, that sorts documents by the date they were responded to. The criteria of the SDSRDate (Response date) is set to filter only the previous months responses. The report is grouped by SD number (submitted transmittal number).
However, I would also like to return from the query all those documents that were received in the previous month but not responded to. The response date field for those records would be a null or empty field.
Can I use a "where" statement in the criteria under the received field (SDDateR) that would include a previous month filter but only lists those dates that have null values in the SDSRDate field?
I can't seem to include in my response date (SDSRDate) filtering criteria a statement that returns the previous months response date records whose date values are null (empty) as well.
I would like to include in the report, documents that have not been responded to or are,in other words,outstanding.
I use the following to limit the report to the previous months records. Can I append to this statement to include nulls?
Between DateSerial(Year(Date()),Month(Date()),1) And DateAdd("d",-1,DateSerial(Year(Date()),Month(DateAdd("m",-1,Date())),1))
Thank you for your time and help in advance.