Is it possible to break/exit from a loop if a certain condition is met inside the loop?
For example, if I loop through a collection named "Collection": if Collection.ID = 124, then I want to exit the loop. I don't want to end the process on the same page.
One possibility would be to transfer the logic to a new page, and end the sub-process when a certain condition is met. Is it possible to exit the loop without doing that?