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”

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.

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