Hi norgro,
Try:
Code:
Sub Highlight_ER_in_SEVERE()
'Search for "severe". Highlight only the letters "er".
Dim oRng As Range
With ActiveDocument.Range
With .Find
.MatchWholeWord = True
.Text = "severe"
.Wrap = wdFindStop 'stops at the end of the document
End With
While .Find.Execute
Set oRng = .Duplicate
With oRng
.Start = .Start + 3
.End = .End - 1
.HighlightColorIndex = wdGreen
End With
.Collapse wdCollapseEnd
Wend
End With
End Sub