Parameter Query in Report Header

G

Guest

I have a Report which is based on a query with a date parameter. This
parameter is user defined. I need to display the dates chosen in the Report
Header eg "Report from XXXXX to XXXXXX"
 
F

fredg

I have a Report which is based on a query with a date parameter. This
parameter is user defined. I need to display the dates chosen in the Report
Header eg "Report from XXXXX to XXXXXX"

Add an unbound text control to the Report Header.
Set it's control source to:
="Report from " & [Enter Start Date] & " to " & [Enter End date]

The text within the brackets must be identical to whatever the
bracketed text is in the query parameter.
 

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