Thread: Loops question
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Jean-Yves[_2_] Jean-Yves[_2_] is offline
external usenet poster
 
Posts: 253
Default Loops question

HI,

3 possiblitis :
1. Always execute one
Do
......
lopp while cond=true
2.Execute only if
Do while cond=True
.....
loop
3Variable
Do
..some code
'test
if cond=ture then exit do
some code
Loop
Regards
JY

"AVB Over My Head" wrote in message
oups.com...
How can a make a loop in a macro until A2 = blank or "". Where can I
put it in the code, in the beginning of the code or the end of it?