< is a logical operator which returns a boolean value:
TRUE (1) if the expression on the left side of the operator is evaluated as being less than the right side of the operator
FALSE (0) if the expression on the left side of the operator is evaluated as equal to or greater than the right side of the operator
SYNTAX:
(Cx or Exp)<(Cx or Exp)
where :
Cx is a conditional variable x
Exp is a Expression
EXAMPLES
C1 < 10
(C1/C11) < (C12+5)
IF(C1<C2,1,0)
NOTES:
Typically used in the logical expression of an IF statement.