May 2004
Intermediate to advanced
576 pages
14h 43m
English
IN THIS CHAPTER
Loops are a fundamental component of any programming language. If you've taken any programming classes, even BASIC, you've likely encountered a For...Next loop. Luckily, VBA supports all the usual loops, plus a special loop that is excellent to use with VBA.
This chapter covers the basic loop constructs:
• For...Next
• Do...While
• Do...Until
• While...Loop
• Until...Loop
We'll also discuss the cool loop construct unique to object oriented languages:
• For Each...Next
For...Next LoopsThese are common loop constructs. Everything between For and Next is run multiple times. Each time that the code runs, a certain ...
Read now
Unlock full access