Hmm, I think that is not possible to hide date in this new comments type.
There is also (I think) not possible to change date of comment or replies.
BUT if dates are confused maybe if you re-date all comments and replies for current date/time will be less confused?
It get data from particular comment, add data into comment in cell A1, delete original, read data from comment in A1 and put it back into original cell, delete from A1.
Then automatically everything in comment in original cell have current date/time (or should be, I was not tested too much).
Sub ReDateComments()
Dim R As Range
Dim tmpText As String
Set R = Range("A2:G13") 'range to check about comments
For Each R In R.Cells
If Not R.CommentThreaded Is Nothing Then
Cells(1, 1).AddCommentThreaded (R.CommentThreaded.text)
For Each OneReply In R.CommentThreaded.Replies
With OneReply
Cells(1, 1).CommentThreaded.AddReply (.text)
End With
Next OneReply
R.CommentThreaded.Delete
If Not Cells(1, 1).CommentThreaded Is Nothing Then
R.AddCommentThreaded (Cells(1, 1).CommentThreaded.text)
For Each OneReply In Cells(1, 1).CommentThreaded.Replies
With OneReply
R.CommentThreaded.AddReply (.text)
End With
Next OneReply
End If
Cells(1, 1).CommentThreaded.Delete
End If
Next R
End Sub
Bookmarks