Selecting reports for printing

  • Thread starter Thread starter alan
  • Start date Start date
A

alan

I want to be able to select a list of static reports and
then print them all together.
example

select from a list
rep a
rep b
rep c

then send them all to print at once.
can anyone help
 
Hello,
You only need to populate a list box with the Reports
Collection (For Each rpt In Reports... ) then Pull the
report names selected. I would save all the names in an
array and then use a for intx = 0 to ubound(aArrayName)and
the Open report from the docmd where ReportName =
aArrayName(intx)

hth
 
Back
Top