fields from form to report

  • Thread starter Thread starter Steven
  • Start date Start date
S

Steven

I have a form that I want to print a report which uses the fields from the
form. It is a single unbound form and is always a 1 page report. Is there
a fast
way to take the values from the form fields to the report. The report uses
the same field names.

Thank you,

Steven
 
I have a form that I want to print a report which uses the fields from the
form.  It is a single unbound form and is always a 1 page report.  Isthere
a fast
way to take the values from the form fields to the report.  The report uses
the same field names.

Thank you,

Steven

you can put controls on your report and point them at your form to get
the values.
the control source on the report would be something like:
=Forms![MyUnboundFormName]![ControlnameOnForm]
 
Back
Top