listing the parameters from a parameter query in a report

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?
 
F

fredg

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top