Shelley,
Of course that could be accommodated. I assume that you are using styles in your documents and or list paragraphs. You could add code to process only a) certain styles or b) paragraphs that are not list paragraphs:
For Each oPar In ActiveDocument.Range.Paragraphs
'If oPar.Style = "Normal" Then
'or
If oPar.Range.ListFormat.ListType = wdListNoNumbering Then
'Existing code
End If
Next
|