How to skip iteration in data transform on some condition

In data transform I am looping through pagelist and if .pySelected= true then it should continue otherwise go for second iteration. How to skip iteration in data transform on some condition?

Hi @ShashikiranK17312002,

You can make use of “WHEN” step inside your looping step to only process the looping step only if a condition is met i.e. when .pySelected= true in your case.

As there is no “OTHERWISE” Or “OTHERWISE WHEN” the loop will do nothing when your condition fails and moves to next iteration.

Thanks, Ankit