query criteria in report header

  • Thread starter Thread starter David
  • Start date Start date
D

David

I apoligize in advance for this basic question, but.....
I have a report based off a query that asks the user to
enter criteria like start date and end date. How do I
get the info the user keys in to appear on the report
header?
 
You can add a text box with a control source like:
="Dates from " & [Enter Start Date] & " to " & [Enter End Date]
Substitute your actual prompts in the above expression.
 
Back
Top