Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Appending reports to one file

Status
Not open for further replies.

rpmrob

Technical User
Apr 23, 2003
34
0
0
CA
I am generating multiple reports which are being printed as each are generated. Here is a snippet of code to give you some idea:

Dept = "[SendListAllSumQuery]![ContactName]=" & Chr$(34) _
& LabelFlag & Chr$(34)
DoCmd.OpenReport stDocName, acNormal, "", Dept

This code is in a loop which changes "Dept" every pass and hence a different report. The issue I'm having is that I feel the printing would be much faster for all the reports (100's) if the multiple reports were placed in one large file as they are generated, and then print the large file (one print job, as opposed to 100's). Does anyone know how I would place/append the reports to a file ?

Thanks,

Rob
 
Rob:

Have you considered using the grouping function on department and putting a page break in the department group footer?

This would eliminate the need to use a loop to generate the reports and still provide individual department reports in a single pass.

Larry De Laruelle
ldelaruelle@familychildrenscenter.org

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top