Macro to autofilter same filter across selected worksheets (not all worksheets)

wizardharry

New Member
Joined
Mar 12, 2015
Messages
2
Just need a code to autofilter across selected worksheets.
Already have the autofilter code just require the code to repeat the autofilter across a selected array of worksheets.

Please Help!!
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
This uses an array of the selected sheets, then calls the sheets one at a time to do the filtering and other work
Code:
Sub selectedsheets()
Dim shAry As Variant
shAry = Array("Sheet2", "Sheet5", "Sheet6", "Sheet8")
For i = LBound(shAry) To UBound(shAry)
	With Sheets(shAry(i))
		.Range("A2:Z100").AutoFilter 1, "X")
		'etc. code to do something
		.Range("A2:Z100").AutoFilter 'Turn filter off
	End With
Next
 
Upvote 0

Forum statistics

Threads
1,216,069
Messages
6,128,599
Members
449,460
Latest member
jgharbawi

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