Macropod
Thanks for the suggestion. Unfortunately when iterating through the style collection the troublesome styles are not found. i.e. the following code prints nothing.
Code:
Sub findplus()
Dim myindex As Long
For myindex = 1 To ActiveDocument.Styles.Count
If InStr(ActiveDocument.Styles(myindex).NameLocal, "+") > 0 Then
Debug.Print ActiveDocument.Styles(myindex).NameLocal
End If
Next
End Sub
The troublesome styles disappear from view (but not from the document) in the style task pane if the show paragaph level formatting check box is unchecked (Style Pane Options dialog box - options from the style task pane)