Automating Multiple Reports

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

Guest

I would like to assign a button on a form that when clicked, prints off 3
seperate reports.

how would i go about doing this?
 
In the Click event procedure of your button, use the OpenReport action 3
times, e.g.:
DoCmd.OpenReport "Report1"
DoCmd.OpenReport "Report2"
DoCmd.OpenReport "Report3"
 
Back
Top