View Single Post
 
Old 10-22-2022, 11:56 PM
Guessed's Avatar
Guessed Guessed is offline Windows 10 Office 2016
Expert
 
Join Date: Mar 2010
Location: Canberra/Melbourne Australia
Posts: 4,176
Guessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant future
Default

Something like this will tell you how many are resolved.
Code:
Sub CountComments()
  Dim iResolved As Integer, aCmt As Comment
  For Each aCmt In ActiveDocument.Comments
    If aCmt.Done Then iResolved = iResolved + 1
  Next aCmt
  MsgBox "Document has " & ActiveDocument.Comments.Count & " comments. " & vbCr & "Resolved: " & iResolved
End Sub
__________________
Andrew Lockton
Chrysalis Design, Melbourne Australia
Reply With Quote