B bonobo Mar 10, 2009 #1 how do I set up comments in Excel that automatically insert date/time stamp as they are created?
S Sheeloo Mar 10, 2009 #2 See Debra Dalgleish's solution at http://www.contextures.com/xlcomments03.html#DateTime
G Gary''s Student Mar 10, 2009 #3 Try this small macro: Sub commenter() Dim s As String s = Now With ActiveCell .AddComment .Comment.Visible = False .Comment.Text Text:=s .Select End With End Sub
Try this small macro: Sub commenter() Dim s As String s = Now With ActiveCell .AddComment .Comment.Visible = False .Comment.Text Text:=s .Select End With End Sub