Do you want a real easy way to show the date range on the report? Try this:
1 - add two fields to your query as follows:
Code:
SDate: [forms]![set date].[start date]
and
Code:
EDate: [forms]![set date].[end date]
I assume your query already includes the criteria as a WHERE field:
Code:
Between [forms]![set date].[start date] And [forms]![set date].[end date]
2 - In your report, add two textboxes in the page header section with the two field names, SDate and EDate, and set their Visible property to No.
3 - Add a new textbox in the page header section. Set the Source property to
Code:
= "From #" & SDate & "# to #" & EDate & "#"
Of course, you can modify the text. Just make sure you have the equal sign, the hash marks, and the double quotes in the right places, or it won't work properly.
Sam