Printing a number of reports

  • Thread starter Thread starter marta
  • Start date Start date
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!
 
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.
 
Back
Top