Same Report Different Footer

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

Guest

Is it possible to print same report information with a different footer?
Three copies of same report, with "for the boss", "for supervisor", or "for
employee" in the footer. thanks
 
Run the code to print the reports using the open args
docmd.OpenReport "ReportName",,,,,"for the boss"
docmd.OpenReport "ReportName",,,,,"for supervisor"
docmd.OpenReport "ReportName",,,,,"for employee"

Now on the create a field, on the "on print" event of the footer, write the
code
me.FieldCreatedName = me.OpenArgs

that will assign the value to the field created
 

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