Function Friday - Logical Comparisons
Similar to most programming languages, Power Automate contains a number of logical functions for comparing values. These include: and, equals, greater, greaterOrEquals, if, less, lessOrEquals, not, or.
Most of these functions work in the same general manner. The function name is passed two or more parameters. The parameters may be single values or expressions, such as the following:
@equals('There', 'Their') //returns false @and(equals('hello', 'goodbye'), equals(1, 2)) //returns false @less(5, 10) //returns true Let’s go through the various functions.