Checking dual condition in if

Can we check dual condition in IF statement like, !Screenshot%20(246)
or any alternative method to do!!?

Yes, You can use “AND” / "OR

instead “&&” try “AND”

2 Likes

In addition to kuldip.gohil - the syntax for does not equal in uipath is “<>”, not “!=”

Therefore your specific example would be

isEmpty=“” and isEmpty<>“”

However the above wouldn’t be allowed as it’s conflicting logic.

1 Like

@KEntwistle thanks for the suggestion & @kuldip.gohil Thanks for the solution.
It works fine :+1: