Code:
Sub ScratchMacro()
'A basic Word macro coded by Greg Maxey
Dim oRng As Range
Set oRng = Selection.Range
With oRng.Find
.ClearFormatting
.Replacement.ClearFormatting
.Text = "USD"
.Replacement.Text = "US Dollars"
.Highlight = True
.Execute Replace:=wdReplaceAll
End With
lbl_Exit:
Exit Sub
End Sub