XL97: Using NoteText and Comment.Text to Apply CommentsID: Q169767
|
In Microsoft Excel 97, the NoteText method of a cell is limited to a maximum length of 255 characters. This article explains how to work around this limitation and some of the related problems that you may encounter when you work with cell comments.
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/
ActiveCell.NoteText "This is a 1000 character comment."
use a line of code similar to the following:
ActiveCell.Comment.Text "This is a 1000 character comment."
ActiveCell.NoteText String(256, "x")
and the active cell does not already contain a comment, no comment is added
to the cell because the length of the new comment would exceed 255
characters.
ActiveCell.NoteText ActiveCell.NoteText & String(100, "x")
and the length of the existing comment exceeds 155 characters, the comment
is not updated because the length of the new comment would exceed 255
characters.
To apply a comment to a cell, use code similar to the following:Run-time error '91': Object variable or With block variable not set
ActiveCell.AddComment
NOTE: If the active cell already has a comment applied to it, you receive
the following error message when you run the code:
To add a comment to a cell that may or may not contain a comment, use code similar to the following:Run-time error '1004': Application-defined or object-defined error
Sub AddACommentToTheActiveCell()
' The following line suppresses the run-time error message when
' adding a comment to a cell.
On Error Resume Next
' Add a comment to the cell. If the cell already contains a comment,
' this line does nothing.
ActiveCell.AddComment
' Return to normal error handling.
On Error GoTo 0
' Add the text to the comment. If the cell already contains a
' comment, this is all you actually need.
ActiveCell.Comment.Text "This is a comment."
End Sub
ActiveCell.Comment.Text ActiveCell.Comment.Text & "New Comment Text"
Characters over the 32,767 character limit for comments are truncated.
For more information on using comments in Microsoft Excel 97, please see the following articles in the Microsoft Knowledge Base:
Q158246 XL97: How to Determine if the Active Cell Contains a Comment
Q160956 XL97: Sample Macro to Remove User Name from Comment
Q156200 XL97: Sounds Not Converted with Cell Notes
Additional query words: XL97 32767
Keywords : kbdta kbdtacode KbVBA
Version : WINDOWS:97
Platform : WINDOWS
Issue type : kbhowto
Last Reviewed: June 15, 1999