Forum home » Delegate support and help forum » Microsoft VBA Training and help » access vba books - Excel Vba
access vba books - Excel Vba
Resolved · Low Priority · Version Standard
For upcoming training course dates see: Pricing & availability
RE: Excel Vba
ShaunIn VBA a loop is a block of code executed repeatedly as long as a certain condition exists.
A loop must have a start command that sets the condition, the block of code and the end command eg:
Do Until X = 100
[Block Of Code]
Loop
OR
For Counter = 1 To 100
[Block Of Code]
Next Counter
Regards
Carlos
|
|
» Forum post: What is a pivot table |



Course updates

