I need to intercept the event of multiple sheet selection in Excel.
A. Workbook_SheetActivate
I have used the
Workbook_SheetActivate
, but my issue is:
--->
When the active sheet remained selected among a multiple selection, the event is not triggered! And I cannot list them in my DataGridView.
B. Workbook_SheetSelectionChange
I have used the
Workbook_SheetSelectionChange
, but my issue is:
--->
It works only when the user select a cell in one of the Workseets. And the List of Selected Sheets should be updated as soon as the user change selections (Single or multiple selections)
Is there a way for me to intercept the list of selected Sheets even if I activate a sheet among the selection?