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