Vba clear slicer on active worksheet only

gazmoz17

Board Regular
Joined
Sep 18, 2020
Messages
158
Office Version
  1. 365
Platform
  1. Windows
Hi,

I have this working code to clear slicers for entire workbook but unfortunately struggling to adapt it to work for current worksheet.

Sub Clearslicerworkbook()
Dim slcr As SlicerCache

' Clear slicer filters
For Each slcr In ActiveWorkbook.SlicerCaches
slcr.ClearManualFilter
Next slcr

' Simulate Ctrl + Home keypress
Application.SendKeys "^{HOME}"
End Sub

Many Thanks
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Try the following...

VBA Code:
Sub ClearSlicerActiveSheet()

    Dim slcr As SlicerCache
    Dim slc As Slicer
    
    For Each slcr In ActiveWorkbook.SlicerCaches
        For Each slc In slcr.Slicers
            If slc.Shape.Parent Is ActiveSheet Then
                slc.SlicerCache.ClearManualFilter
            End If
        Next slc
    Next slcr
    
End Sub

Hope this helps!
 
Upvote 0
Solution

Forum statistics

Threads
1,215,160
Messages
6,123,355
Members
449,097
Latest member
thnirmitha

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