Two values are compared with each other
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
!=
not equal
<
less than
<=
less than or equal to
>
greater than
>=
greater than or equal to
like
contains
1 + 1 = 3 - 1
Apples = Pears
Apples != Pears
1 + 1 != 3 - 1
4 * 2 < 10
10 < 4 * 2
5 * 2 <= 10
10 <= 4 * 2
10 > 4 * 2
4 * 2 > 10
5 * 2 >= 10
4 * 2 >= 10
"Hello" like "el"
"el" like "Hello"