To select the last Slicer item, try something like this
Sub test() Dim i As Long, n As Long With ActiveWorkbook.SlicerCaches("Slicer_Account") n = .SlicerItems.Count For i = 1 To n - 1 .SlicerItems(i).Selected = False Next I .SlicerItems(n).Selected = True End With End Sub




