S
Steved
Hello from Steved
The macro below finds the word Win as in the example below but I only want
the macro to reconize the word Win if it has *% after it please, as in the
macro, please how to I ask the macro to do this Thankyou.
Fourth in No Hero's Great Western Steeplechase. Win hope, despite big weight.
Selection.Find.ClearFormatting
With Selection.Find
.Text = "Win*%"
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindAsk
.Format = False
.MatchCase = True
.MatchWholeWord = True
.MatchWildcards = True
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute
The macro below finds the word Win as in the example below but I only want
the macro to reconize the word Win if it has *% after it please, as in the
macro, please how to I ask the macro to do this Thankyou.
Fourth in No Hero's Great Western Steeplechase. Win hope, despite big weight.
Selection.Find.ClearFormatting
With Selection.Find
.Text = "Win*%"
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindAsk
.Format = False
.MatchCase = True
.MatchWholeWord = True
.MatchWildcards = True
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute