G Guest Mar 14, 2005 #1 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?
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 Mar 14, 2005 #2 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"
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"