Forum home » Delegate support and help forum » Microsoft VBA Training and help » vba training london - VBA
vba training london - VBA
Resolved · Low Priority · Version Standard
For upcoming training course dates see: Pricing & availability
RE: VBA
Hi ClareA loop is basically just a set of statements that run until a condition is set.
For example:
i=0
if i <= 10
do something
i++
The above is pseudocode for a loop, this loop will do something until i reaches 10.
Hope this helps
David
|
|
» Forum post: Test |





