Returns TRUE if the first argument is greater than or equal to the second, and FALSE otherwise.
Sample Usage
GTE(5,10)
GTE(A4,A5)
Syntax
GTE(value1, value2)
- value1 - The value to test.
- value2 - The value to be tested against.
Examples
GTE(5,10) evaluates to FALSE.
GTE(A4, A5) evaluates to TRUE if A4 is greater than or equal to A5. Otherwise, it returns FALSE.