Apply Macro on Multiple Worksheets in a Workbook

A

Agnes

When I output financial reports from the Financial Report Writer FRx t
Excel, report always come out in a messy format that I have to adjus
page format so each worksheet will be printed on 1 page in a readabl
format (each output file/workbook usually has 30 worksheets).

I have created a macro to do the formatting: adjust all margins t
0.25, make page portrait and scale to fit page to 1 wide by 1 tall.

But the macro can only be applied to the worksheet I selected. I'v
tried highlighting all worksheets and even included the highlight al
sheet action in the script, but the macro only works on the page I'
in.

Is there anyway I can apply a macro to all worksheets? A challeng
here is that the worksheet name in each workbook is different an
worksheets in each workbook could be different each period (I don'
always generate the same worksheets).

I have been manuall highlighting all worksheets to adjust page forma
for 30 reports each month. I'd really appreciate if you could help m
come up with a more effiencent way to do it. Thanks in advance!

Agne
 
N

Norman Jones

Hi Agnes,

One approach:

Sub Tester()
Dim sh As Worksheet

For Each sh In ActiveWorkbook.Worksheets
'Your format code
Next sh

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