Something like this - it doesn't check for an existing comment but is easily modified to do so:
Sub AddToCmt()
Dim OldCmt As String, NewCmt As String
NewCmt = "add this"
OldCmt = ActiveCell.NoteText
NewCmt = OldCmt & " " & NewCmt
ActiveCell.NoteText NewCmt
End Sub


LinkBack URL
About LinkBacks



Reply With Quote

Bookmarks