How to break a “for each embedded page” loop?
The “Exit interation” just skip current round of the loop and enter next round, like “continue” in java.
How could I quit the whole loop (like “break” in java)?
Thanks.
How to break a “for each embedded page” loop?
The “Exit interation” just skip current round of the loop and enter next round, like “continue” in java.
How could I quit the whole loop (like “break” in java)?
Thanks.
@MaxonL16591286 use jump to later step
@UdayReddyGunthala ok, a way not so “graceful”. Thanks.