12-13-2013 05:28 PM
Why does this only give me one line rather than 5?
Solved! Go to Solution.
12-13-2013 05:34 PM
Hello Erny123,
Your stop logic is inverted- you need to use a greater than rather than a less than operator. Right now, i=0 is less than 5, so the loop only executes once.
Regards,
12-13-2013 05:35 PM
Wow thanks. Been looking at it for half an hour.
12-13-2013 06:59 PM - edited 12-13-2013 07:01 PM
Or just click the conditional terminal to make it "continue if true". 😄
Still, since you know the number of iterations before the loop starts, a FOR loop would be the right choice here.