Printing multiple worksheets in 2000

  • Thread starter Thread starter Mary Metcalf
  • Start date Start date
M

Mary Metcalf

How do I print multiple worksheets as one print job in
Excel 2000?
 
Hi Mary

Select the Sheets you want(hold the Ctrl key when you select them) and print
Don't forget to ungroup

Or use this macro lines

ActiveWorkbook.PrintOut
'the whole workbook

Worksheets.PrintOut
'all worksheets

Sheets.PrintOut
'all sheets

Sheets(Array("Sheet1", "Sheet3")).PrintOut
'all sheets in the array

ActiveWindow.SelectedSheets.PrintOut
'print all selected sheets

ActiveSheet.PrintOut
'only the activesheet

Sheets("Sheet1").PrintOut
'only "Sheet1"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top