Formatting macro to loop through all worksheets

danelskibr

Board Regular
Joined
Dec 31, 2014
Messages
58
Hello,

My goal is to run two sets of code that will format all of the sheets in my workbook in one of two ways. All the sheets are either formatted in style "A" or in style "B". One way to identify which type of style I am working with is to run the following:

Code:
 If IsEmpty(Range("K3").Value) = True Then

If the result is true, then the sheet is Style A. If it is not true, then it is Style B.

Does anyone know of an effective way to accomplish this?


I am thinking it would look something like this:

If Sheet A, run formatting code for Sheet A style.

If not Sheet A, Run formatting code for Sheet B style.

Move to next sheet and repeat for the entire workbook


THANKS!
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Sub Macro1()
dim ws as Worksheet
for each ws in Activeworkbook.Worksheets
ws.Select
If IsEmpty(Range("K3").Value) = True Then
.....
Else:
......
End if
Next ws
End Sub
 
Upvote 0

Forum statistics

Threads
1,216,118
Messages
6,128,939
Members
449,480
Latest member
yesitisasport

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top