Comparison operators
Two values are compared with each other
Last updated
Two values are compared with each other
Last updated
This allows you to compare 2 numeric values. The operators return a result that is either true or false. The output in the Ninox field is Yes (true
) or No (false
).
Operator | Description | Examples |
---|---|---|
=
equal
1 + 1 = 3 - 1
Apples = Pears
!=
not equal
Apples != Pears
1 + 1 != 3 - 1
<
less than
4 * 2 < 10
10 < 4 * 2
<=
less than or equal to
5 * 2 <= 10
10 <= 4 * 2
>
greater than
10 > 4 * 2
4 * 2 > 10
>=
greater than or equal to
5 * 2 >= 10
4 * 2 >= 10
like
contains
"Hello" like "el"
"el" like "Hello"