Automating Multiple Reports

G

Greg Wallace

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?
 
A

Allen Browne

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"
 
Top