Less-than-or-equal <=
Operator: <=
Last updated
Was this helpful?
Operator: <=
Last updated
Was this helpful?
The result of the <=
operator is true or false.
The result is True whenValue1
is less than or equal to Value2
.
The result is False when Value1
is not less than or equal to Value2
.
number <= number
text <= text returns (alphabetical comparison, case insensitive)
datetime <= datetime
duration <= duration
concept <= concept (applies to the order of concepts)
reference <= reference
If any of the operands is unknown, the result is also unknown. If operands are not of the same type, the "expression type mismatch" warning is displayed.