IsLessThan Operator

Description:

Test that a first value is less than a second value, where the ordering of values is determined by their datatype:
  • Boolean:
    false < true
  • Number:
    numerical ordering
  • Date, Time:
    chronological ordering
  • Text:
    Comparison of corresponding characters by their Unicode value
  • List:
    Comparison of corresponding list members by their datatype
Synonym:
<
Returns:
Boolean
Parameters:
Parameter
Data Type
Description
1
Any
The first value.
2
Any
The second value.
Examples:
Expression
Result
0 IsLessThan 1
true
1 < 1
false
"b" < "a"
false

Related content