greaterOrEquals. Logical.(Power Automate Cloud flows)
Compares two values of the argument, True if the first value is greater than or equal to the second value, False otherwise.
Value | Result |
---|---|
The first value is greater than or equal to the second value. | True |
The first value is less than the second value. | False |
Spec
greaterOrEquals(<value>,<compareTo>)
Argument | Default | Description |
---|---|---|
value compareTo | Required field | Value to be determined. The following results are obtained. True :value >= compareTo False:value < compareTo |
How to use
Often used in "Condition".

It is frequently used among the "value" in "Initialize variable" or "Set variable" of Type "Boolean".

Click on the "Expressions" tab, equals, and the function name and () will be set in the formula field.
Specify two values in it.
If you want to use dynamic contents or variables, specify them specially.
(How to get dynamic content with an expression)

If you see something like the following, your settings are complete.
Click on the purple icon to change the function.

greaterOrEquals(100,99) yields True because the first value is greater.

Text-to-text comparisons are also made in the order of the characters.
However, if one is numerical and one is text, the comparison cannot be made and an error will result.
Discussion
New Comments
No comments yet. Be the first one!