Is there a way to change my defaults to print the entire workbook?

  • Thread starter Thread starter Guest
  • Start date Start date
I don't think you can change that to be the default.

But you could provide a macro that prints the workbook, then run that macro when
you wanted to print the entire workbook.

The code would look something like:

ActiveWorkbook.PrintOut
 
Thank you, Dave.

Dave Peterson said:
I don't think you can change that to be the default.

But you could provide a macro that prints the workbook, then run that macro when
you wanted to print the entire workbook.

The code would look something like:

ActiveWorkbook.PrintOut
 
Back
Top