0
Comparison operators
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 | 1 + 1 = 3 - 1Apples = Pears |
!= |
not equal | Apples != Pears1 + 1 != 3 - 1 |
< |
less than | 4 * 2 < 1010 < 4 * 2 |
<= |
less than or equal to | 5 * 2 <= 1010 <= 4 * 2 |
> |
greater than | 10 > 4 * 24 * 2 > 10 |
>= |
greater than or equal to | 5 * 2 >= 104 * 2 >= 10 |
like |
contains | "Hello" like "el""el" like "Hello" |
