How can I clear filters for a table slicer similar to my existing PT slicer clearing macro?

vbaNumpty

Board Regular
Joined
Apr 20, 2021
Messages
171
Office Version
  1. 365
Platform
  1. Windows
I use the following code to clear slicers from my PT:

VBA Code:
Sub clearSlicer()

Dim pt As PivotTable
Dim cache As Slicer

For Each pt In ActiveSheet.PivotTables
    For Each cache In pt.Slicers
        cache.SlicerCache.ClearAllFilters
    Next cache
Next pt

End Sub

How can I accomplish the same thing but for slicers that are part of a regular Excel Table?
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
VBA Code:
Sub jec()
  For Each sl In ActiveWorkbook.SlicerCaches
    sl.ClearManualFilter
  Next
End Sub
 
Upvote 0
VBA Code:
Sub jec()
  For Each sl In ActiveWorkbook.SlicerCaches
    sl.ClearManualFilter
  Next
End Sub
Is there a way to edit this as to not clear all slicers in the workbook, but only on a single sheet?
 
Upvote 0
Like this
VBA Code:
Sub jec()
  For Each oCache In ActiveWorkbook.SlicerCaches
     For Each oSlice In oCache.Slicers
        If oSlice.Parent.Name = "your sheetname" Then oCache.ClearManualFilter
     Next
  Next
End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,214,857
Messages
6,121,948
Members
449,056
Latest member
FreeCricketId

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