Pass array of sheet names to another procedure

FryGirl

Well-known Member
Joined
Nov 11, 2008
Messages
1,364
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
In lieu of placing the array of sheets within the two procedures below, how can I use a third procedure to establish the array of sheets and then pass that argument?

Code:
Sub ApplyAutofilter()
    Dim ws As Worksheet
    For Each ws In ActiveWorkbook.Worksheets(Array("Sheet1", "Sheet2", "Sheet3", "Sheet4"))
        ws.Range("A1").AutoFilter 1, Sheet5.Range("K4")
    Next
End Sub

Code:
Sub TurnOffAutoFilter()
    Dim ws As Worksheet
    For Each ws In ActiveWorkbook.Worksheets(Array("Sheet1", "Sheet2", "Sheet3", "Sheet4"))
        ws.AutoFilterMode = False
    Next
End Sub
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
You could create a UDF that returns a Sheets object
Code:
Function MyKeyWorksheets() As Sheets
    Set MyKeyWorksheets = ThisWorkbook.Worksheets(Array("Sheet1", "Sheet2", "Sheet3", "Sheet4"))
End Function

Sub TurnOffAutoFilter()
    Dim ws As Worksheet
    For Each ws In MyKeyWorksheets
        ws.AutoFilterMode = False
    Next
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,630
Messages
6,120,634
Members
448,973
Latest member
ChristineC

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