View Single Post
 
Old 03-18-2013, 10:03 AM
netchie netchie is offline Windows XP Office 2007
Novice
 
Join Date: Jun 2011
Posts: 24
netchie is on a distinguished road
Default

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

Last edited by macropod; 03-19-2013 at 03:02 PM. Reason: Added code tags & formatting
Reply With Quote