Parameter info on a report.

  • Thread starter Thread starter Antonio`
  • Start date Start date
A

Antonio`

I have several buttons on a form that when clicked ask
for specific information and then display the report
based on the values the user entered. Is there a way to
display the parameter data a user has input when
launching a report on the report itself?
TIA
 
You could create unbound textboxes whose control source refer to the values
of the controls on the form.

Example:
=Forms!Form1!txtMyTextbox
 
Back
Top