ADD - before the word defined

D

Designingsally

I m trying to add - before the word "defined". Can somone help me how to go
abt it.\?


Sally
 
D

DaveLett

You can do this many different ways, but this one's pretty easy:

With ActiveDocument.Range
.Text = Replace(.Text, " defined ", " -defined ")
End With

HTH,
Dave
 
Top