CitectVBA Programming Reference > CitectVBA Function Reference > Conditional Statements > For

For

Repeats its block of statements a set number of times as determined by the values used with the To clause.

Example

For <CounterName> = <BeginValue> To <EndValue> [Step <StepValue>]
<statement/s>
Next