Printing a number of reports

M

marta

Hello, one more question...
I have a series of reports that make up one big report.
Is there a way to automatically print these reports at
once (perhaps through a macro)? Right at the moment I am
printing each report individually and is very time
consuming.

thanks!
 
F

Fredg

Marta,
Here are a two simple ways.
1) If the reports are always printed as a group, you can code the Close
event of one report to open the next report.

2) Code a command button on a form to open each report in succession.
DoCmd.OpenReport "Report1"
DoCmd.OpenReport "Report2"
etc.
 

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