IsMoreThan Operator
Description:
Test that a first value is greater 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 |
|---|---|
1 IsMoreThan 0 | true |
1 > 1 | false |
"a" > "b" | false |