Quote Originally Posted by iPrank
Also, the For Next <Counter> format is slower. You don't need to add the counter after the Next - it will be faster.
Untrue. In compiled code there is no difference was the counter put there or not: it compiles to the exact same code both ways. For code readability it is better to put it in (and that's why we have it).