listing the parameters from a parameter query in a report

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a query that requires a date range parameter. I also have a report for
this query.

How do I show the date range in the report that I enter for the query?

In other words, if my date range is 1/1/07 to 1/31/07, how do I list those
tow dates in the report so I know what the date range is for that particular
report?
 
I have a query that requires a date range parameter. I also have a report for
this query.

How do I show the date range in the report that I enter for the query?

In other words, if my date range is 1/1/07 to 1/31/07, how do I list those
tow dates in the report so I know what the date range is for that particular
report?

Add an unbound control to the report header.
Set it's control source to something like:
="For Sales between " & [Enter Start Date] & " and " & [Enter End
Date]

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