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