LessThan

Syntax

LessThan(Expression1, Expression2)

See also: Operators, IF, True, False

Summary

Returns a value of 1 if parameter 1 is less than parameter 2. Otherwise returns a value of zero.

Note: Included for backwards compatibility with earlier versions of LEAP. In the latest versions of LEAP you can now use the  "<" operator in your expressions.

Example

LessThan(-1,3) = 1
LessThan(3,1) = 0
LessThan(1,1) = 0