I have posted a question earlier about limiting date in a field.
I have 3 date fields Date Delivered, Date Received, and Date Approved
I began using
in the criteria row of the date field in my query.
When I run the query, I obtain the correct results.
When I run the reports, my results are all incorrect. I’m not sure what I should be doing.
And since I have 3 date fields, 6 parameter boxes will pop up.
What’s the most efficient way I can limit my reports according to these 3 date fields?
I have 3 date fields Date Delivered, Date Received, and Date Approved
I began using
Code:
(Between [Enter Date Delivered Start Date] And [Enter Date Delivered End Date]) Or [Enter Date Delivered Start Date] Is Null Or [Enter Date Delivered End Date] Is Null
(Between [Enter Date Received Start Date] And [Enter Date Received End Date]) Or [Enter Date Received Start Date] Is Null Or [Enter Date Received End Date] Is Null
(Between [Enter Date Approved Start Date] And [Enter Date Approved End Date]) Or [Enter Date Approved Start Date] Is Null Or [Enter Date Approved End Date] Is Null
When I run the query, I obtain the correct results.
When I run the reports, my results are all incorrect. I’m not sure what I should be doing.
And since I have 3 date fields, 6 parameter boxes will pop up.
What’s the most efficient way I can limit my reports according to these 3 date fields?