Select the product you need help with
How to run a macro when certain cells change in ExcelArticle ID: 213612 - View products that this article applies to. This article was previously published under Q213612
For a Microsoft Excel 97 and earlier and Microsoft Excel 98 Macintosh Edition and earlier version of this article, see 142154
(http://support.microsoft.com/kb/142154/
)
.
SUMMARY
In Microsoft Excel, you can create a macro that is called only when a value is entered into a cell in a particular sheet or in any sheet that is
currently open.
Note, however, that you should not call macros unnecessarily because they slow down the performance of Excel. MORE INFORMATIONMicrosoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements.
In many instances, a macro should run only when a certain number of cells
have values entered into them (referred to as the "key cells" in this
document). In order to prevent a large macro from running every time a
value is entered into a cell of a sheet, you must check to see if the
ActiveCell is one of the key cells. To accomplish this, use the
Intersect method on the ActiveCell and the range containing the key cells to verify the ActiveCell is one of the key cells. If the ActiveCell is in the range containing the key cells, you can call the macro. To create the Visual Basic macro:
Properties | Article Translations
|


Back to the top








