Query input to show on report

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

Guest

I have a report that is based on a query which looks for a date range of
records. In the criteria line I'm using BETWEEN [start date] and [end date]

The query and report work fine. My question is, how can I have the start
date and the end date display on my report?

Thanks.
 
Set the ControlSource for an unbound text box to something like

="Data extracted for dates between " & [start date] & " and " & [end date]

(including the = sign)
 
Back
Top