VBA to loop thru SOME (but not all) worksheets

KatieTD21

New Member
Joined
May 13, 2014
Messages
15
Newbie looking for assistance with looping thru SOME, but not all, worksheets in a workbook -

My workbook has 6 worksheets and I need to do the following for only 3 of the 6 sheets:

  1. Turn off Freeze Panes
  2. Turn off AutoFilterMode
  3. Delete all content

I tried the code below but it only works on the active sheet. How do I get it to loop thru all 3 sheets? Any help is appreciated. Thanks.

Code:
Dim WS As Worksheet

For Each WS In Sheets(Array("Alpha", "Bravo", "Charlie"))
   ActiveWindow.FreezePanes = False
   ActiveSheet.AutoFilterMode = Flase
   Cells.Delete Shift:=xlUp
Next WS
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Maybe this...UNTESTED
Code:
Sub MM1()
Dim WS As Worksheet

For Each WS In Sheets(Array("Alpha", "Bravo", "Charlie"))
   WS.Activate
   ActiveWindow.FreezePanes = False
   WS.AutoFilterMode = False
   Cells.Delete Shift:=xlUp
Next WS
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,029
Messages
6,122,755
Members
449,094
Latest member
dsharae57

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