< Operator (Less Than)
Syntax
Expression < Expression
See also: Operators, IF, True, False
Summary
The < operator returns True if the value of the left-hand term is less than the right-hand term. Otherwise it returns False.
Example
IF(2 < 3, 10, 5) = 10