Is it possible to add multiple evaluation expression in for loop container.
Background: I have a file, in the file the value of a field will be Y/N, If the value is N then I have to keep reading this file until the value is Y then exit for loop.
To do this, I used a for loop inside for loop I am loading the data into record set destination and assigning the values to a variable called "@Value" Now in for loop I am keeping this condition
Init : @Start = 0
Eval : @Value = "N"
Assi : @Start = @Start + 1
Now I have to add one more condition in for loop such that, it has iterate only 5 times then exit. so I used @Value == "N" || @Start > 10 in evaluation expression. But it is not working. OR part is not considering, How can I achieve it.