Adding form to report after the wizard...

  • Thread starter Thread starter Terry Olsen
  • Start date Start date
T

Terry Olsen

I created a report using the wizard, selected the query I wanted to use for
population of the report.

I have an unbound textbox on a form where the user enters a "code". I need
to print this code on each page of the report. But I can't figure out how
to add the form as a source for the report.

help is appreciated.

thanks!
 
If the form is open when the report runs, you can use a text box on the
report with Control Source like this:
=[Forms].[Form1].[Text1]
 
I've tried this...I must be doing it wrong. Because when I preview or print
the report, I get an InputBox requesting a value for the textbox control.


Allen Browne said:
If the form is open when the report runs, you can use a text box on the
report with Control Source like this:
=[Forms].[Form1].[Text1]

--
Allen Browne - Microsoft MVP. Perth, Western Australia.

Reply to group, rather than allenbrowne at mvps dot org.

Terry Olsen said:
I created a report using the wizard, selected the query I wanted to use
for population of the report.

I have an unbound textbox on a form where the user enters a "code". I
need to print this code on each page of the report. But I can't figure
out how to add the form as a source for the report.

help is appreciated.

thanks!
 
Back
Top