Printing Criteria on Reports

  • Thread starter Thread starter Arthur
  • Start date Start date
A

Arthur

I have a query that has criteria set to prompt for a
beginning date and an ending date so the data is inbetween
the date range.

I created a report from the query. Is it possible to have
the criteria print somewhere on the report?

Thanks

Artie
 
Arthur,
Add an unbound control to the report header.
Set it's control source to something like:
="For sales between " & [Enter Starting Date] & " and " & [Enter Ending
Date]

The text within the brackets must be identical to the query bracketed text.
 
Back
Top