GTE

Check if one value is greater than or equal to another.

Parameter List

Syntax
GTE(value1value2)
value1

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

value2

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

More details

Equivalent to the >= operator.

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

GTE(7, 6) returns TRUE