vba question

C

Chip Pearson

Sally,

Do While is a looping structure. It causes code to be repeated
until some condition is False. For example

Dim Test As Boolean
Do While test = True
'
' your code here
'
test = False
Loop

This will execute the code in "your code here" repeatedly until
the variable Test is set to False.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 
Top