Quick way to print all reports

  • Thread starter Thread starter Gordzilla
  • Start date Start date
G

Gordzilla

Is there an easy way to print all Access reports at once. The database I
have has over 200 individual reports defined. Is there an easy way to print
them all at once?
 
I don't thant you can do it with naming all the report
names within a maco of VB programming.

in VB:

DoCmd.OpenReport "Report1", acNormal
DoCmd.OpenReport "Report2", acNormal
DoCmd.OpenReport "Report3", acNormal
DoCmd.OpenReport "Report4", acNormal
etc....

You can include the list of report names in a table and
have the VB coding run of that table

Kevin11
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top