Print Multiple reports

Peanuts

Registered User.
Local time
Today, 12:59
Joined
Mar 10, 2003
Messages
16
I need to print a packet of reports. What would be the easiest way to print, say 5 reports, from the current form that I have open?
 
Add a command button to the Report and add the following to the On Click Event

DoCmd.OpenReport "ReportName1", acViewNormal
DoCmd.OpenReport "ReportName2", acViewNormal
DoCmd.OpenReport "ReportName3", acViewNormal
DoCmd.OpenReport "ReportName4", acViewNormal
DoCmd.OpenReport "ReportName5", acViewNormal

HTH
 

Users who are viewing this thread

Back
Top Bottom