A family of Microsoft word processing software products for creating web, email, and print documents.
Use a macro containing the following code:
Dim Findstr As String
Findstr = InputBox("Insert the word from which the highlight is to be removed")
Selection.HomeKey wdStory
With Selection.Find
Do While .Execute(FindText:=Findstr, Forward:=True, \_
MatchWildcards:=True, Wrap:=wdFindStop, MatchCase:=True) = True
With Selection
.Range.HighlightColorIndex = wdAuto
.Collapse wdCollapseEnd
End With
Loop
End With