print more than one report at a time

  • Thread starter Thread starter Annie
  • Start date Start date
A

Annie

i would like to print up to 10 reports at one time. Is
there a way to do that from a command button?
 
Hi Annie.
Actually there are various ways to do so.
If the intend is to integrate various reports into one
report, the main report with subreports would be the way.
If you wish to click once and have 10 different reports to
be printed you can do that by either creating a macro with
all desired open reports and than a button on a form to
activate this macro.
One other way would be to modify an existing button for a
report and replicatethe following lines:
stDocName = "Report1"
DoCmd.OpenReport stDocName, acNormal
stDocName = "Report2"
DoCmd.OpenReport stDocName, acNormal
etc.
Hope this helps.
Fons
 
Back
Top