Including query dates in report

  • Thread starter Thread starter DJ
  • Start date Start date
D

DJ

I have a report based upon a query. The query selects records based upon the
value of a date field using a criteria:

"Between [Type the beginning date:] And [Type the ending date:]"

Is there any way I can collect these dates so they can be output on the
report?
 
IMO, you should be using controls on forms rather than parameter prompts.
However you can set a text box control source to something like:
="Dates Between " & [Type the beginning date:] & " And " & [Type the ending
date:]
 
Back
Top