A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi,
there is no automatic way to set the date the comment was added. You must set the whole comment by VBA:
example:
Sub SetComment()
With ActiveCell
.AddComment "Your name:" & Chr(10) & Format(Date, "dd/mm/yyyy")
End With
End Sub
Regards,
Frank
If this post is the answer to your question, please mark it for all readers as the Answer and helpful!