Parameters & Returns
Parameters
This function takes no parameters.
Returns
Quick Summary
Begins a counted loop that iterates from a start value to an end value
Technical Exegesis...
Begins a counted loop that iterates from a start value to an end value. Syntax is For variable = start To end [Step increment]. The loop counter is automatically incremented each iteration. Step is optional and defaults to 1. The loop continues until the counter exceeds the end value. Must be closed with Next.