VBA Excel Hide all comments indicators in the sheets
Sub HideCommentIndicators()
'' to unhide all comment indicators
Application.DisplayCommentIndicator = xlCommentAndIndicator
'' to hide all comment indicators
Application.DisplayCommentIndicator = xlNoIndicator
End Sub
No comments:
Post a Comment