Chapter 43. Working with Excel Events
In the preceding chapters, you’ve seen some examples of VBA event-handler procedures. These procedures are the keys to making your Excel applications interactive. This chapter provides an introduction to the concept of Excel events and includes many examples that you can adapt to meet your own needs.
Understanding Events
Excel is capable of monitoring a wide variety of events and executing your VBA code when a particular event occurs. This chapter covers the following types of events.
Workbook events: These occur for a particular workbook. Examples include
Open
(the workbook is opened or created),BeforeSave
(the workbook is about to be saved), andNewSheet
(a new sheet is added). VBA code for workbook events must be stored in the ThisWorkbook code module.Worksheet events: These occur for a particular worksheet. Examples include
Change
(a cell on the sheet is changed),SelectionChange
(the cell pointer is moved), andCalculate
(the worksheet is recalculated). VBA code for worksheet events must be stored in the code module for the worksheet (for example, the module named Sheet1).Events not associated with objects: The final category consists of two useful application-level events:
OnTime
andOnKey
. These work differently from other events.
Entering event-handler VBA code
Every event-handler procedure ...
Get Excel® 2007 Bible now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.