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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excel printing multiple sheets in different print jobs

Status
Not open for further replies.

pfan

Technical User
Sep 26, 2001
5
US
I have a macro printing 16 sheets at once, but each time I print it sends 3 different print jobs to the printer. How do I make it all one print job? Here is a section of my code:

Sheets(Array(sheet1, sheet2, sheet3, . . . sheet16)) _
.Select
Sheets(sheet16).Activate
ActiveWindow.SelectedSheets.PrintOut Copies:=1, _
Preview:=False, Collate:=False

Thanks in advance for any and all help
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top