View Single Post
 
Old 08-17-2018, 07:25 PM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

You can identity anonymous comments and what they relate to using a macro like:
Code:
Sub Demo()
Dim Cmnt As Comment
For Each Cmnt In ActiveDocument.Comments
  With Cmnt
    If .Author = "" Then
      .Scope.Select
      MsgBox .Range.Text
    End If
  End With
Next
End Sub
It's not clear what you mean by 'We need to separate them out', though.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote