Format Printing

P

patty.baldwin

I need to format the printing of each of my worksheets in
one file. Is there an easier way to a global format of
entire file other than opening each page and formatting
each page?
 
B

BrianB

Unfortunately they have to be done one at a time. You could, however
record a macro of your actions - presumably you are using File/Pag
Setup - and run it on each of the worksheets.

To apply it to each worksheet in a workbook, you put your code inside
loop like :=

'-------------------------------------
Sub formatting()
Application.ScreenUpdating = False
For Each ws In Worksheets
ws.Activate
'----------------------------------------
'-- put your recorded code here
'----------------------------------------
Next
Application.ScreenUpdating = True
End Sub
'------------------------------------
 

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

Top