XL98: Error Applying Comment When Worksheets Are GroupedLast reviewed: March 6, 1998Article ID: Q182136 |
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:
Run-time error '1004': NoteText method of Range class failedThe 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
ActiveCell.NoteText Text:="This is a comment."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 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 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/refguide/default.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:
Sub Test1() 'Use "Range(ActiveCell.Address)" in place of "ActiveCell." Range(ActiveCell.Address).NoteText Text:="This is a comment." End Sub 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:
Sub Test2() 'For each currently selected worksheet... For Each xSheet In ActiveWindow.SelectedSheets '...add a comment to the active cell in that sheet. xSheet.Range(ActiveCell.Address).NoteText Text:="Hello!" 'Repeat for all of the grouped worksheets. Next xSheet End Sub 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
ActiveCell.NoteText Text:="This is a comment."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:
ARTICLE-ID: Q163435 TITLE : VBA: Programming Resources for Visual Basic for Applications |
Additional query words: XL98 xl98vbmigrate
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |