Another way to find them is to open VBE (Alt + F11), click on the object class module (for example, ThisWorkbook or Sheet1) and use the drop-down boxes at the top of the code panel. If, for example, you select "ThisWorkbook" from the drop-down list on the left, the right-hand drop-down box will contain all the events available to you.
For objects that are not a workbook or worksheet (Application, QueryTable, etc.), create your own class module (Insert - Class Module) in your project and enter (for example)
Public WithEvents qt As QueryTable
Now "qt" appears in the left drop-down list, and all events for QueryTable appear in the right part. You will notice that Intellisense only shows a limited number of objects when you enable WithEvents. These are the only objects that exposed the events. So you cannot enter
Public WithEvents rng As Range
because the Range object does not expose any events. A bit more cumbersome than James's answer, but a good way to view events when you know an object and get a list of objects with open events.
Dick kusleika
source share