Enable Multi-select on slicer by default

前端 未结 4 1425
一生所求
一生所求 2021-01-15 09:23

I have slicers in my workbook that I need multi-select enabled by default.

I tried SendKeys.

ActiveSheet.Shapes.         


        
4条回答
  •  情歌与酒
    2021-01-15 09:51

    One workaround could be that you select the slicer and then use SendKeys-method.

    ActiveSheet.YOURSLICER.Select
    SendKeys "%s"  || sends ALT+S key combination to toggle multiselect ON.
    

提交回复
热议问题