=
|
Two arguments of logical types
|
=A1=A2
|
Equality. Returns TRUE if the first argument is equal to the second one. Otherwise, returns FALSE.
|
<>
|
Two arguments of logical types
|
=A1<>B2
|
Inequality or "not equal". Returns TRUE if values within the list are not equal. Otherwise, returns FALSE.
|
<
|
Two arguments of logical types
|
=A2<B4
|
Less than. Returns TRUE if the first argument is less than the second one. Otherwise, returns FALSE.
|
>
|
Two arguments of logical types
|
=A12>100
|
Greater than. Returns TRUE if the first argument is greater than the second one. Otherwise, returns FALSE.
|
<=
|
Two arguments of logical types
|
=A2<=C4
|
Less than or equal to. Returns TRUE if the first argument is less than or equal to the second one. Otherwise, returns FALSE.
|
>=
|
Two arguments of logical types
|
=A2>=2.45
|
Greater than or equal to. Returns TRUE if the first argument is greater than or equal to the second one. Otherwise, returns FALSE.
|