Oh wait! I think I got it! Found it while surfing
Here is theVBA for those who needs similar VBA
Code:
Sub RemoveWord()
Dim rngStory As Range
For Each rngStory In ActiveDocument.StoryRanges
With rngStory.Find
.Text = "Do"
.Replacement.Text = "Done
.Wrap = wdFindContinue
.Execute Replace:=wdReplaceAll
End With
Next rngStory
End Sub
But still, to to the guys who always helping me here. You guys ROCK!
Thanks,
netchie