Using VBA macro to select slicer item (but what if only one item exists)

Jer Maine

New Member
Joined
Jun 23, 2017
Messages
15
Good day, Excel masters. I'm a first time poster to MrExcel, hopefully not breaking any forum rules. I am trying to use a macro to filter a slicer with only two options: Y or N. I want to filter out all rows with N in a certain column. The slicer is connected to a table. There are no pivot tables or anything else. My code is as follows:

With ActiveWorkbook.SlicerCaches("Slicer_SB")
.SlicerItems("Y").Selected = True
.SlicerItems("N").Selected = False
Debug.Print "Visible Slicer Items: "
End With

This code works fine as long as the table contains both Y and N items. But if the table only contains Y's, then the N item disappears from the slicer, and my macro produces a run time error '5': Invalid procedure or argument and refers me to the line colored in red text above that refers to slicer item "N".

Is there a way to test to see if slicer item N exists so the code won't break?

I have tried many things and researched for hours without any answer so far. I have also tried commenting out the red line above, but then the code doesn't filter to just the Y's, it includes the Y's and N's.
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
Hi Jer Maine,

Welcome to the Forum!

I poked around a little myself, and the only way around it that I could find was this. There may be a more eloquent way, but I did not see it. That said, this should work for you.

Code:
With wb.SlicerCaches("Slicer_SB")
    On Error GoTo Error_Handler
    .SlicerItems("Y").Selected = True
    .SlicerItems("N").Selected = False
Error_Handler:
    Debug.Print "Visible Slicer Items: "
End With

HTH
 
Upvote 0
Sorry for the late response, I was out of town. Your solution was brilliant and simple, I love it! Thank you so much. You also just taught me about Error Handling which is apparently quite useful.
 
Upvote 0
Great, I am glad it worked for you. Thanks for the feedback!
 
Upvote 0

Forum statistics

Threads
1,215,693
Messages
6,126,248
Members
449,305
Latest member
Dalyb2

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