How do I print several different reports with one command?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have several single page reports I need to print with one command button.
What is the easiest (and most reliable) way to do this?
 
Rocket said:
I have several single page reports I need to print with one command button.
What is the easiest (and most reliable) way to do this?

Write a macro to print the reports one after the other and execute the macro
from the command button.

Tom Lake
 
Rocket said:
I have several single page reports I need to print with one command button.
What is the easiest (and most reliable) way to do this?

DoDmd.OpenReport "rptMyReport1", acViewNormal
DoDmd.OpenReport "rptMyReport2", acViewNormal
DoDmd.OpenReport "rptMyReport3", acViewNormal

etc.

HTH - Keith.
www.keithwilby.com
 
Back
Top