Just out of curiosity, do you know if one method would be quicker than the
other?
--
Stefan Blom
Microsoft Word MVP
This is not possible, right? It sure would be useful to be able to
tell Word "Find style A or style B".
Depends on how you go about finding it. You can't use the standard
Find and Replace methods, but you can look at each paragraph
individually to determine if it is formatted with style A or B and
then proceed accordingly:
Sub ScracthMacro()
Dim aPar As Paragraph
For Each aPar In ActiveDocument.Paragraphs
Select Case aPar.Style
Case Is = "Stlye A", "Stlye B"
aPar.Style = "Style C"
Case Else
End Select
Next
End Sub