shekhar_pc
Board Regular
- Joined
- Jan 29, 2006
- Messages
- 185
I am finding a word "Start" using the following code
Once the word is found, it does some works then again it find the next word "Start" and some more work.
I want to keep this in loop till the time the LAST word "Start" is found.
How to keep this in loop?
Code:
Cells.Find(What:="Start", After:=ActiveCell, LookIn:=xlFormulas, LookAt _
:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
False, SearchFormat:=False).Activate
I want to keep this in loop till the time the LAST word "Start" is found.
How to keep this in loop?