Join mulitple reports when printing

L

LMsMOM

I would like to combine 3 reports into one when printing. rptOne,rptTwo &
rptThree. How can this be accomplished?
 
K

Klatuu

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.
 
F

fredg

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.
 

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

Top