I use this code all the time, thanks to one of the forum members!However, I would like to confine it to just the active worksheet or a specific worksheet. Is that possible? Thank you for reading.Code:Sub SlicerReset()
Dim slcr As SlicerCache
Application.ScreenUpdating = False
For Each slcr In ActiveWorkbook.SlicerCaches
slcr.ClearManualFilter
Next slcr
Application.ScreenUpdating = True
End Sub