GreaterThan
Syntax
GreaterThan(Expression1, Expression2)
Summary
Returns a value of 1 if parameter 1 is greater 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
GreaterThan(-1,3) = 0
GreaterThan(3,1) = 1
GreaterThan(1,1) = 0