How to add multiple condition in IF block activity?

6-11-2018%2012-29-17%20PM

how to add multiple condition in a if block activity?

@pranethsv7 Use AND OR

Condition1 AND Condition2
Condition1 OR Condition2

Yeah, i tried using AND condition in the condition statement, still getting the error

Try application = ‘condition1’ AND application = ‘condition2’.

Thanks, the error got fixed, but in the output file the data content is blank

Well that sounds pretty logical, because you’re checking if a variable has 1 value AND another value, while it cannot have two different values at the same time. I guess you want to use OR instead of AND.

1 Like