Hide all comments in an Excel workbook. No indicators will be displayed and comments will not appear when you hover over or select a cell that contains a comment. The comments will remain within the Excel file and the same cells as before however, the user will not be able to see or read the comments. Also, the user will not be able to un-hide the comment unless they have access menu commands in Excel. However, the user will be able to edit the comment. As a result, this is not the best method to use to completely protect your comments from a user.
Sub Hide_Comments_in_Workbook_Completely()
'This macro hides the comments and comment indicators - users wont know there is a comment within the excel workbook
Application.DisplayCommentIndicator = xlNoIndicator
End Sub