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

D

Dave Peterson

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
 
R

Ronimad

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
 
Top