print the form displayed to a Single report

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

Guest

I need to print the current form data to a singel report. when I print a
report now I get all the reports for that form
 
Larry,
In your report, you need to filter the results so it only shows the one
record you want.
Each record should have a unique identifier (key) field. (for ex.
[CustID]) Use that field on the form to filter your reports.

In the query behind the report, in the CustID column, put this criteria...
(use your own names)
=Forms!frmYourFormName!CustID
hth
Al Camp
 
Back
Top