parameter question

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

Guest

Is it possible to make a query parameter's input appear in a report's header.
I have a report based on a query with a parameter for City. I would like the
City chosen to appear in the header of the report. Is this possible? If so,
how? Any help would be greatly appreciated.
 
Yes, just include the prompt exactly as you entered it in the query in an
unbound text box on your report....

=[City]

or

= "City: " & [City]
 
The easiest way to deal with that is to enter the parameter in a
textbox on the calling form. Both in your Header and in the criteria
line for City put

forms!MyCallingForm!MyTxtControl

Notice that you can refuse to call the form if the control is empty.

HTH
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top