Hide all comments in the active sheet

Sub HideComments()
 Dim c As Comment
 For Each c In ActiveSheet.Comments
  c.Visible = False
 Next c
End Sub


© Copyright andrewsexceltips.net All Rights Reserved.