Join mulitple reports when printing

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

Guest

I would like to combine 3 reports into one when printing. rptOne,rptTwo &
rptThree. How can this be accomplished?
 
What do you mean by combine?
If it is just that you want them all to print out together, put them all
either in a macro or VBA procedure to print one after the other.

If you are wanting to combine them into one document, you can use sub
reports, but be aware, something in a report don't work when the report is
used as a sub report. For example, you will not get page headers in a sub
report.
 
I would like to combine 3 reports into one when printing. rptOne,rptTwo &
rptThree. How can this be accomplished?

DoCmd.OpenReport "Report1"
DoCmd.OpenReport "Report2"
DoCmd.OpenReport "Report3"

When done, stack the report pages, one on top of the other.

If that is not what you want, then you'll need to give more
information.
 
Back
Top