A
angellijah
When I create a macro and then look at the VBA, it has a lot of lines that I
don't think are necessary. Here is what I got for a find macro:
With Selection.Find
.Text = "run date"
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Do I have to have all of those lines?
don't think are necessary. Here is what I got for a find macro:
With Selection.Find
.Text = "run date"
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Do I have to have all of those lines?