I have a bot that runs a for each loop <=5 then breaks out of the loop and has to return back into the loop to continue process at row 6. I am testing a theory and need to know if this is possible?
So I get the row count out of the dt
I begin a for each
Pull some data out of the dt (a number value)
I have an assign = dt_verity.Rows.IndexOf(row)
then an if condition of dt_verity.Rows.IndexOf(row) <=5
This process runs and breaks out of the activity but I am not sure how to get this process to return back into the for each at row 6?