Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

# reports with one click

Status
Not open for further replies.

dixxy

Technical User
Mar 4, 2003
220
CA
Hello,

Is there a way to open 3 different reports with juste one button click?

Thanks,

Sylvain
 
In the On Click event of your command button, put code like this:
Code:
DoCmd.OpenReport "report1", acViewPreview
DoCmd.OpenReport "report2", acViewPreview
DoCmd.OpenReport "report3", acViewPreview
Just take off the "acViewPreview" if you want them to print directly....
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top