Hi, I am trying to find if a style exists within the template in VBA so if it did exist I could call another sub.

I can do it this way:
[VBA] Selection.Find.Style = ActiveDocument.Styles("_AG Green Highlight")
Selection.Find.Execute
If Selection.Find.Found = True Then
If ActiveDocument.Bookmarks.Exists("PerfectPitch_Merged") = False Then
Call PerfectPitchLoad
End If
End If[/VBA]

However, I know the style always exists in the template of the document, but isn't necessarily in use, therefore I need code to check if it exists, rather than if it is used.

Hope this makes sense and someone can help.

Mark