The counting loop stops after some iterations, but the table has 3 rows only, instead of the 6 expected, and there is no increment to the inner variable. On the other hand, the variable condition loop doesn’t stop.
Could someone provide a hint on how to solve these problems?
HI Pier,
Welcome
I didn’t see anything wrong in the first branch.
So I Simply replaced by a table instead of a variable loop. it worked , we have 6 interactions.
The flow is exactly what you have in the top branch
Now, to get the progression of the values we should work with the iterations variables otherwise we are only piling up the same row. : See attachment Loop -Adrix.knwf (26.1 KB)
Hi @Adrix ,
thanks for your support: so, first error is to use variables instead of columns in the loop.
Now the issue remains in the incremental value: even replacing the column with the math formula
$increment$ + 1
it seems to have no memory, so it remains stuck to the first increment to 1: any hint on what is wrong?
Hello
As far as my understanding, now It is doing what was designed for.
What was the end goal ? In each inner iteration the incremental should be grater ( +1) each iteration ?
It won’t happen because we are not working in table , so the loop is always the same row.
The last tool (loop end) is only pilling up the results . If there is need to make the incremental bigger you need to add the the interaction counter (
Hi @Adrix ,
thanks for your clarifications an patience: I completely misunderstood the usage of columns and variables.
As an exercise, I did the same with the variable condition loop end, in case it helps someone else.