Browsing articles from "September, 2011"
ilearnexcelvba

iLearn Excel VBA: Do-While-Loop

By Peter Atoria  //  September 7th, 2011  //  Visual Basic  //  No Comments

A Different Kind of Loop

A Do-While-Loop is similar to a For-Loop in the sense that they are both iteration statements. The only difference is that the Do-While-Loop has a conditional statement that it uses to determine whether or not the loop shall continue. Take a look: (more…)