Hi michaelhum,
I know this is not possible at the moment, but there is a way to have a nested loop. This is how I do it:
Split the job in two seperate jobs. Let one job (master job) run the other (slave job) passing the loop variables as job variables.
This way your slave job can also have a loop. In this slave job you can access the master loop variables by its own job variables and it can use its own loop variables.
Master job
For X=1 to Variable A
task 1
task 2: Run slave job passing my loop variables
task 3
EndLoop
Slave job
For X=1 to 3
Task 1 using job variables and own loop variables
Task 2
EndLoop
Now you have a nested loop. 😁
Regards,
Erik
Edited by user
2018-04-26T06:20:16Z
|
Reason: typo
Uses Visualcron since 2006.