Continue loop after certain conditions - TA5
By @pmavrakis
I want to skip the rest of my foreach loop when certain conditions are met, like a continue statement would in scripting. Is there any way I can go about this, since labels can't be placed within loops anymore?
- LLiam @liam
Would the Exit Loop action not meet your requirements?
And although you can't place labels within a loop (as you can't move processing to a spot within a loop) you can use "Go To Label" to move to a label outside of a loop.I hope these help.
- P@pmavrakis
It does not, we need the label within the loop so that it can continue processing and iterate through attachments until there aren't any more. Sort of like a continue statement.