Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are the events that I can use in Excel

Tags:

excel

vba

Where can I find a list of events in Excel? I want to write macros in VBA based on them. I already know of Worksheet_BeforeDoubleClick, but I more or less just discovered that randomly/remembered it was used in Access.

Does anyone have a complete list or know where I can find one of the different events in Excel?

like image 462
Jeff Avatar asked Jul 14 '10 19:07

Jeff


1 Answers

Here is the excel object model overview which you can use to navigate to the members of each model.

http://msdn.microsoft.com/en-us/library/wss56bz7(VS.80).aspx

You would use this to get to:

http://msdn.microsoft.com/en-us/library/microsoft.office.interop.excel.application_members.aspx

Scroll down for events.

like image 97
James Santiago Avatar answered Sep 23 '22 18:09

James Santiago