When the user doubleclick on a cell in a Pivot-Table, Excel generates a new Worksheet with the Details. That is perfect. I am searching for a possibility to register a VBA-Event in this new Worksheet. I want register a function for the Event Worksheet_SelectionChange
for this new Worksheet.
How can I do this?
Register Event for automatically generated Worksheet in Excel
41 Views Asked by BennoDual At
1
It is a little bit complicated, but with your Reputation, I'm sure you don't fear complications :)
First of all in your Excel File, make sure you Reference VBIDE in your reference using the following:
1. You need the VBIDE Reference for this to Work:
1.a. You can run the following Code in your Immediate Window to attach the Reference:
1.b. Or you can attach manually "Microsoft Visual Basic for Applications Extensibility 5.3" from your Tools\References
2. Once the Reference is Attached, you can add the following function into your WorkBook:
For getting this, I had to dig deeply but thank God it works. For more information, you can go here:
I hope this will help you!