Which Is Better For Looping—IF Or WHILE?
With custom macro B, there are two logic words that can be used for creating loops—the two types of loops are called IF and WHILE statement loops. So which one should you use for your applications?
Share




With custom macro B, there are two logic words that can be used for creating loops—the two types of loops are called IF and WHILE statement loops. Everything that can be done with one type of loop can be done with the other, and for most applications, there is no obvious advantage to either. So which one should you use for your applications?
I’ll begin to answer this question with a quick example of each. In each case, the loop will simply count to ten (no other activities).
IF statement loop that counts to ten:
.
#101 = 1 (Initialize counter)
N1 IF [#101 GT 10.0] GOTO 99 (Test if finished)
.
.
#101 = #101 + 1 (Step counter)
GOTO 1 (Go back to test)
±·99…
.
While statement loop that counts to ten:
.
#101 = 1 (Initialize counter)
WHILE [#101 LT 10] DO 1 (Beginning of loop)
.
.
#101 = #101 + 1 (Step counter)
END 1 (End of loop)
.
As you can see, there isn’t much of a difference between these two loops. Both loops require a counter to be initialized before the loop starts and stepped before the loop ends. Both require a test at the beginning of the loop to determine whether the loop is finished.
I’ve always taught people to use the IF statement loop. It was my feeling that because it is no simpler to set up a WHILE statement loop—and because people are already familiar with the IF statement from other applications (it is used any time conditional branching is required)—programmers usually find it easier to learn and use the IF statement loop.
Additionally, there is a limit to how deep you can nest WHILE statement loops. You can nest them up to three deep (DO1, DO2, D3, END3, END2, END 1). There is no such limitation to the IF statement loop. Admittedly, applications that require nesting more than three deep are few and far between—but this just contributed to my feeling that using the IF statement loop is better.
However, I was not aware of one important advantage to using the WHILE statement loop. A WHILE statement loop will execute much faster than an IF statement loop in applications where the loop is placed many commands into a program. Consider, for example, a loop placed at the end of a very long program.
With an IF statement loop, the GOTO statement at the end of the loop tells the control to go back to the N word preceding the IF statement. To do so, the control must go all the way back to the beginning of the program and start searching for the N word from there. The greater the distance from the program’s beginning to the N word, the longer it will take to find. Even with newer machines, it is not unusual to experience a noticeable pause during this time (0.5 second or more).
With older controls, you may not experience any improvement with a WHILE statement loop. But with newer controls, a WHILE statement loop will nearly eliminate the noticeable pause. It is my understanding that the END command at the end of the loop will cause the control to search backward to find the corresponding DO command, which dramatically shortens the search time.
So which looping type should you use? For most applications, it probably doesn’t matter. Use the one you are most comfortable with. But if you do use IF statement loops, be alert for times when the control pauses after each execution. For these applications, you should probably switch to a WHILE statement loop.
Read Next
AMRs Are Moving Into Manufacturing: 4 Considerations for Implementation
AMRs can provide a flexible, easy-to-use automation platform so long as manufacturers choose a suitable task and prepare their facilities.
Read MoreMachine Shop MBA
Making Chips and 91ÊÓÆµÍøÕ¾ÎÛ are teaming up for a new podcast series called Machine Shop MBA—designed to help manufacturers measure their success against the industry’s best. Through the lens of the Top Shops benchmarking program, the series explores the KPIs that set high-performing shops apart, from machine utilization and first-pass yield to employee engagement and revenue per employee.
Read MoreLast Chance! 2025 Top Shops Benchmarking Survey Still Open Through April 30
Don’t miss out! 91ÊÓÆµÍøÕ¾ÎÛ's Top Shops Benchmarking Survey is still open — but not for long. This is your last chance to a receive free, customized benchmarking report that includes actionable feedback across several shopfloor and business metrics.
Read More