I have slicers in my workbook that I need multi-select enabled by default.
I tried SendKeys.
ActiveSheet.Shapes.Range(Array("WMS")).Select
SendKeys "%S", True
ActiveSheet.Shapes.Range(Array("Equipment")).Select
SendKeys "%S", True
ActiveSheet.Shapes.Range(Array("Warehousing Skills")).Select
SendKeys "%S", True
ActiveSheet.Shapes.Range(Array("OCF Skills")).Select
SendKeys "%S", True
This selects the slicers as intended but the sendkeys
did not enable multi-select.
I tried adding a pause before and after the sendkeys
command.
I tried selecting two slicer options. This did not enable multi-select.