Typing Parameters in Twice?

N

Nick CWT

I have a report filtered by a query: Begin date - end date. Can I display
begin date and and end date on report without having to type it in twice?
I'm currently using a text box in report with control: ="For the period " &
[begin date] & " to " & [end date].
Thank You.
 
R

RBear3

As long as the parameters are typed exactly the same, you will only be
prompted once. You told us what you have in your report, what do you have
in your query? If it is the following, you should only be prompted once:

Between [begin date] and [end date]
 
Top