>

Check if one value is greater than another.

Parameter List

Syntax
>(value1value2)
value1

The value to be compared against value2. For example: 7.

value2

The value to be compared against value1. For example: 5.

More details

Equivalent to the GT() function.

For string parameters, the comparison follows a lexicographical ordering. That is each character, ordered 0 to 9 and then A to Z, in the string is given a value. Character pairs are then evaluated against each other until one character is greater than another.

Examples

>(7, 5) returns TRUE