Public Sub Copy_Comments()
Set Comments_collection = ThisWorkbook.Worksheets("Sheet1").Comments
Set Copy_Sheet = ThisWorkbook.Worksheets("Comments")
For Each cell In Comments_collection
auth = cell.Author
comment_in_full = cell.Text
comment_text = Right(comment_in_full, Len(comment_in_full) - InStr(auth, comment_in_full) - Len(auth) - 2)
Copy_Sheet.Range(cell.Parent.Offset(-1, 0).Address).Value = comment_text
Next
End Sub