in my workbook a lot of connected slicer in multiple sheet, to be able previewing the outputs well, have to cache all slicer filter, is there a VBA solution let me remove slicer filter automatically when opening the workbook every time
Private Sub Workbook_BeforeClose(Cancel As Boolean)
Dim cache As SlicerCache
For Each cache In ActiveWorkbook.SlicerCaches
cache.ClearManualFilter
Next cache
End Sub