Macro to clear all slicers except one

brookep5842

New Member
Joined
Jul 6, 2021
Messages
6
Office Version
  1. 365
Platform
  1. Windows
Hello, I'm working with a table with many slicers. I want a command button that will clear all the filters from the slicers, but keep the 'year' slicer as is. Any help would be appreciated. I'm quite new with VBA, so please make it really obvious what parts of the code I should be substituting with my own slicer names ect, and what I should copy exactly.

Thank you^^"
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Welcome!

The filter state a specific slicer are stored in its SlicerCache object, which in turn is part of the Workbook. What that means, is for each slicer in the current workbook to clear the filters on, you would want to use
VBA Code:
ThisWorkbook.SlicerCaches("Slicer_Field").ClearAllFilters
, with Field being the name of the field assigned to that slicer.
 
Upvote 0
Solution
Welcome!

The filter state a specific slicer are stored in its SlicerCache object, which in turn is part of the Workbook. What that means, is for each slicer in the current workbook to clear the filters on, you would want to use
VBA Code:
ThisWorkbook.SlicerCaches("Slicer_Field").ClearAllFilters
, with Field being the name of the field assigned to that slicer.
Thank you! It worked great
 
Upvote 0

Forum statistics

Threads
1,223,630
Messages
6,173,454
Members
452,514
Latest member
cjkelly15

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