Delete a comment in Excel with this macro. You can permanently remove or delete a specific comment or many comments using this macro. The benefit of this macro is that you can specify exactly which comments you want deleted.
To use this macro, simply replace the range reference A1 with the reference of the cell that contains the comment which you want to delete.
Sub Remove_Specific_Comment()
'This macro deletes the comment from cell A1 in Excel
Range("A1").Comment.Delete
End Sub