Displaying Parameter Input on Report

M

Marv Trott

Hi,

How do I capture and display the "Start Date" and "End Date" in the page
heading of a Report that has the "Start Date" and "End Date" entered by the
user?


Thanks for any suggestions.

Marv
 
M

Marshall Barton

Marv said:
How do I capture and display the "Start Date" and "End Date" in the page
heading of a Report that has the "Start Date" and "End Date" entered by the
user?


Use a text box with the **exact** same reference you use in
the query. E.g.
="Form " & [Enter Start Date] & " to " & [Enter End Date]
 
Top