View Single Post
 
Old 07-15-2020, 07:44 AM
hookeymookey hookeymookey is offline Windows 10 Office 2013
Novice
 
Join Date: Jul 2020
Posts: 2
hookeymookey is on a distinguished road
Question Close Selected Comment

I've got an end user on Office 2013, that can't right-click, wanting to be able to 'Close' comments.

There is a VB string to close specific comments, but that doesn't do any good on a document that has more than 1 comment. So I see where the problem is, but I'm not sure how to (if it's even possible) to use 'Selection' to close a highlighted comment.

What I have setup below closes the first comment.

Code:
Sub Name()
With ActiveDocument.Comments(1)
.Done = True
End With
End Sub
Reply With Quote