List of Operators you can use in Power Automate condition
Here is a list of operators you can use in condition step in Power Automate.

- contains:
contains(attributename,value) - does not contain:
not(contains(attributename,value)) - equals:
equals(attributename,value) - does not equal:
not(equals(attributename,value)) - starts with:
startsWith(attributename,value) - does not start with:
not(startsWith(attributename,value)) - ends with:
endswith(attributename,value) - does not end with:
not(endswith(attributename,value)) - greater than:
greater(attributename,value) - greater than or equal:
greaterOrEquals(attributename,value) - less than:
less(attributename,value) - less than or equal:
lessOrEquals(attributename,value)
Hope it helps.








