''' set the color for highlighting
Options.DefaultHighlightColorIndex = wdGray25
With Selection
.HomeKey Unit:=wdStory
With .Find
.ClearFormatting
.Text = "Test"
With .Replacement
.ClearFormatting
.Highlight = True
End With
.Execute Replace:=wdReplaceAll
End With
End With