A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
This one is for comments.
=======================
Sub ExtractComments()
Set cmt = Worksheets(1).CommentsThreaded
i = 1
For Each cmt In ActiveSheet.CommentsThreaded
Range("A" & i).Value = cmt.Author.Name
Range("B" & i).Value = cmt.Text
i = i + 1
Next cmt
End Sub
=======================