ID: Q183133
The information in this article applies to:
In Microsoft Excel 98 Macintosh Edition, a Worksheet_Change macro assigned to a worksheet may not run when the worksheet is changed.
This problem occurs if you sort a range of cells within the worksheet.
Microsoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article.
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 the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web:
http://www.microsoft.com/supportnet/refguide/
In Microsoft Excel 98 Macintosh Edition, you can create a
"Worksheet_Change" macro that runs whenever data within a specific
worksheet is changed. To create such a macro, follow these steps:
1. On the Tools menu, point to Macro, and then click Visual Basic
Editor. Or, press OPTION+F11.
2. In the Project window, you should see entries similar to the
following:
VBAProject (Book1)
Microsoft Excel Objects
Sheet1 (Sheet1)
Sheet2 (Sheet2)
Sheet3 (Sheet3)
Double-click the entry for the worksheet to which you want to assign
a Worksheet_Change macro (for example, Sheet1).
3. In the Code window, enter the following code:
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
MsgBox "The worksheet was changed!"
End Sub
4. On the File menu, click "Close an Return to Microsoft Excel."
If you enter a value in a cell in Sheet1, the Worksheet_Change macro runs, and a message box appears with the message "The worksheet was changed!" The macro runs when you make a change to data in the worksheet, such as entering a value in a cell or refreshing a PivotTable.
However, the macro does NOT run if you sort a range within the worksheet. Sorting a worksheet does not trigger the Worksheet_Change event, so the macro does not run.
Additional query words: XL98 vba vbe
Keywords : kbprg kbdta xlvbahowto xlvbainfo
Version : MACINTOSH:98
Platform : MACINTOSH
Issue type : kbprb
Last Reviewed: May 18, 1999