XL98: Error Applying Comment When Worksheets Are Grouped

ID: Q182136

The information in this article applies to:

SYMPTOMS

In 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 failed

The same macro works without error in earlier versions of Microsoft Excel.

CAUSE

This 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.

WORKAROUND

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/support/supportnet/refguide/

To work around this problem, use either of the following methods.

Method 1: Use the Range and NoteText Methods

Do 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 Loop

To 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

STATUS

This behavior is by design of Microsoft Excel 98 Macintosh Edition.

MORE INFORMATION

In 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.

REFERENCES

For 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 xlvbmigrate
Keywords          : kbprg kbdta kbdtacode OffVBA 
Version           : MACINTOSH:98
Platform          : MACINTOSH
Issue type        : kbprb

Last Reviewed: June 30, 1999