B
Beamer
I have programming setup to run inside a Do While loop where it looks for
certain text and then deletes the row. The problem I am having is getting
the loop to stop when it has found all of text in the document. My current
coding is:
Do While XAB < 40
.Forward = True
.Wrap = wdFindContinue
.MatchWholeWord = True
.MatchAllWordForms = False
.Execute FindText:="%<>%"
Selection.Rows.Delete
XAB = XAB + 1
Loop
Any suggestions would be appreciated.
certain text and then deletes the row. The problem I am having is getting
the loop to stop when it has found all of text in the document. My current
coding is:
Do While XAB < 40
.Forward = True
.Wrap = wdFindContinue
.MatchWholeWord = True
.MatchAllWordForms = False
.Execute FindText:="%<>%"
Selection.Rows.Delete
XAB = XAB + 1
Loop
Any suggestions would be appreciated.