Next loop

Last updated
Was this helpful?
Next loop is an action used to immediately stop the actions following it in the current loop iteration, skipping the remaining code of the loop block (For or While) to jump directly to the next iteration.
Unlike Exit loop (which exits the loop entirely), Next loop only skips the current iteration and continues to execute the subsequent iterations until the list is exhausted. This action is often placed within an If statement to filter out erroneous or unsuitable data.

Last updated
Was this helpful?
Was this helpful?