The information in this article applies to:
SYMPTOMSIn Microsoft Excel 98 Macintosh Edition, if you run a Microsoft Visual Basic for Applications macro that attempts to add a comment to a cell in a worksheet, you may receive the following error message: The same macro works without error in earlier versions of Microsoft Excel. CAUSEThis error message occurs when the macro contains a line of code similar to the following
to add a comment to a cell, and two or more worksheets are grouped or
selected.
WORKAROUNDMicrosoft 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/support/supportnet/overview/overview.aspTo work around this problem, use either of the following methods. Method 1: Use the Range and NoteText MethodsDo not use the NoteText method with the ActiveCell property directly. Instead, use the ActiveCell property to determine what cell to comment, and then apply the comment to that cell using the Range and NoteText methods. The following sample macro demonstrates this technique:
Method 2: Use a LoopTo apply the same comment to the active cell in all of the grouped worksheets, you can use For Each and Next statements to loop through all of the worksheets. The following sample macro demonstrates this technique:
STATUSThis behavior is by design of Microsoft Excel 98 Macintosh Edition. MORE INFORMATIONIn earlier versions of Microsoft Excel, if you run a macro that contains the following line of code
the comment is only applied to the active cell in the active worksheet.
Even though other worksheets may be grouped, the comment is not applied to
them, and you do not receive an error message.
In Microsoft Excel 98 Macintosh Edition, if you run a macro that contains this line of code when multiple worksheets are grouped, you receive the error message mentioned in the "Symptoms" section. Note that in all versions of Microsoft Excel, you cannot manually comment a cell by clicking Comment or Note on the Insert menu when multiple worksheets are grouped. REFERENCESFor more information about getting help with Visual Basic for Applications, please see the following article in the Microsoft Knowledge Base: Q163435 VBA: Programming Resources for Visual Basic for Applications Additional query words: XL98 xlvbmigrate
Keywords : kbprg kbdta kbdtacode OffVBA |
Last Reviewed: November 9, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |