Printing Entire Workbook

  • Thread starter Thread starter Gary Thomson
  • Start date Start date
G

Gary Thomson

Hi All,

Is there a macro (or other method) that can be used to
print off every worksheet within a workbook, without
manually clicking on each sheet then using File -> Print??

Thanks,

Gary.
..
 
Hi Gary
some ways without VBA:
- in the 'File- Print' dialog choose 'Entire workbook'
- or select the first sheet, hold down the SHIFT key and select the
last sheet. Now print the selection

with VBA:

sub print_all()
dim wks as worksheet
for each wks in worksheets
wks.printout
next
end sub

Note: this will print only worksheets (does exclude Charts, etc.)
 

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