XL97: Worksheet Change Event Macro Fails to RunID: Q172832
|
When data on a worksheet is changed, a Microsoft Visual Basic for Applications Change event macro that you created does not run.
This problem occurs when the following conditions are true:
Microsoft has confirmed this to be a problem in the Microsoft products listed
at the beginning of this article.This problem was corrected in Microsoft Excel 2000.
Microsoft provides programming examples for illustration only, without warranty
either expressed or implied, including, but not limited to, the implied warranties of
merchantability and/or fitness for a particular purpose. This article assumes that you
are familiar with the programming language being demonstrated and the tools used to
create and debug procedures. Microsoft support professionals 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 needs. If you have limited
programming experience, you may want to contact a Microsoft Certified Solution Provider
or the Microsoft fee-based consulting line at (800) 936-5200. For more information about
Microsoft Certified Solution Providers, please see the following page on the World Wide Web:
http://www.microsoft.com/mcsp/For more information about the support options available from Microsoft, please see the following page on the World Wide Web:
http://www.microsoft.com/support/supportnet/overview/overview.aspYou can create a Visual Basic event macro that runs whenever the data on a worksheet is changed. The Change event macro runs when data is added or updated on the worksheet. However, when you paste data from another program or update data by using a DDE link, the Change event does not occur.
Sub Auto_Open()
Worksheets("Sheet1").OnData = "DDEDataChangeMacro"
End Sub
Sub DDEDataChangeMacro()
MsgBox "Data has Changed."
End Sub
For more information about using a Change event, click the Index tab in Microsoft Visual Basic for Applications Help, type the following text
change eventand then double-click the selected text to go to the "Change Event" topic.
Additional query words: XL97
Keywords : kbprg kbdta KbVBA
Version : WINDOWS:97
Platform : WINDOWS
Issue type : kbbug
Last Reviewed: July 23, 1999