Function to Capture Pivot Table Slicer Selection

pwyller

New Member
Joined
Sep 30, 2016
Messages
14
All,

I've tried this code I found, but all it ever returns is the last error message that the slice name doesn't exist. Here is the code:
Code:
Public Function GetSelectedSlicerItems(SNme As String) As String
    Dim oSCache As SlicerCache
    Dim oSItem As SlicerItem
    Dim lCnt As Long
    
    On Error Resume Next
    Application.Volatile
    Set oSCache = ThisWorkbook.SlicerCaches("SNme")
    
    If Not oSCache Is Nothing Then
        For Each oSItem In oSCache.VisibleSlicerItems
            If oSItem.Selected Then
                GetSelectedSlicerItems = GetSelectedSlicerItems & oSItem.Name & ", "
                lCt = lCt + 1
            End If
        Next
        If Len(GetSelectedSlicerItems) > 0 Then
            If lCt = oSCache.VisibleSlicerItems.Count Then
                GetSelectedSlicerItems = "All Items"
            Else
                GetSelectedSlicerItems = Left(GetSelectedSlicerItems, Len(GetSelectedSlicerItems) - 2)
            End If
        Else
            GetSelectedSlicerItems = "No items selected"
        End If
    Else
        GetSelectedSlicerItems = "No slicer with name " & S_Name & " was found"
    End If
End Function

Any help would be appreciated!
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.

Forum statistics

Threads
1,213,511
Messages
6,114,054
Members
448,543
Latest member
MartinLarkin

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