I am limiting a report to a date range using parameters in a query.
If the user, for instance, wanted to display all the dates.. when the parameter pops up asking for a start date, the user will not enter anything and just click OK, when the parameter pops up for end date, the user will not enter anything and just click OK. And then the report should list all dates.
This is in my critera row under the date field:
Between Nz([Enter Start Date],[BasicDate]) And Nz([Enter End Date],[BasicDate])
The problem now is that there are some records don't have a date entered. If the user doesn't enter a date when prompted, I would like the report to list ALL records the ones with the dates and ones without a date.
How would I be able to view both?
If the user, for instance, wanted to display all the dates.. when the parameter pops up asking for a start date, the user will not enter anything and just click OK, when the parameter pops up for end date, the user will not enter anything and just click OK. And then the report should list all dates.
This is in my critera row under the date field:
Between Nz([Enter Start Date],[BasicDate]) And Nz([Enter End Date],[BasicDate])
The problem now is that there are some records don't have a date entered. If the user doesn't enter a date when prompted, I would like the report to list ALL records the ones with the dates and ones without a date.
How would I be able to view both?