S
Steved
Hello from Steved
..Text = "Win*%*%"
If the above line is not found can I put in a statment to ignore so that the
macro can continue. Thankyou.
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = "Win*%*%"
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = True
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute
Selection.Delete Unit:=wdCharacter, Count:=1
..Text = "Win*%*%"
If the above line is not found can I put in a statment to ignore so that the
macro can continue. Thankyou.
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = "Win*%*%"
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = True
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute
Selection.Delete Unit:=wdCharacter, Count:=1