A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi,
you can set your comment options with VBA:
Sub AddComment()
With ActiveCell
.AddComment
.Comment.Visible = False
.Comment.Text Text:="Frank Arendt-Theilen:" & Chr(10) & ""
.Comment.Shape.Placement = xlMoveAndSize
End With
End Sub
Regards,
Frank
If this post answers your question, please mark it for all readers as the Answeror vote if the reply has been helpful.