passing text from a form to a report

  • Thread starter Thread starter Jerry Crosby
  • Start date Start date
J

Jerry Crosby

I have a form with a command button that prints a report. I need the user
to input a couple words of text on the form that needs to appear on the
report (as a way of customizinig the report). How do I pass what they enter
in the form, to the report? (It is not one of my data fields in any table,
and doesn't need to be.)

Thanks in advance.

Jerry
 
Just place a text box on the repot, and have it reference the text box on
your form.

So, the user in the form types some text into a un-bound text box called
MyNotes

And, in the reports header, you place a text box, and for its source you go:


=(forms!YourFormName!MyNotes)
 

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