I need to loop from beginning

If i a certain conditions is passed ,i need to start from the beginning of the loop value
How can I do that

Hello @sruthesanju ,

Can you please explain a little more, if possible with screenshots of the workflow?

Thanks!
Athira

I have a datatable when i loop the datatable using for loop inside for loop i have a condition if the condition satisfy i need to run the loop from first row

try this
Sequence.xaml (9.2 KB)


image
use while loop, in each iteration, assign currentRow = dt.rows(index)

then if condition met, assign index=0 (firstRow)
if index = row count-1 (at last row) then break out of while loop

or you can do this
declare boolean restartLoop
image
the below sequence will restart the for each row loop as long as condition is met