IsLower

See Also...

Related Topics

 

 

Description

This formula determines whether the first of two numbers given is less than the second number given. If the first value is less than the second value, this formula returns true.

 

This formula is similar to the Min() function. However, where the Min() function returns the lowest value in many arguments, this formula simply answers the question of whether the first value is less than second.

 

 

Formula

IsLower(nFirst, nSecond)=begin

   retval = FALSE

   nDifference = Diff(nFirst, nSecond)

   if nDifference <= 0 then retval = TRUE

   retval

end

 

 

Parameters

nFirst

A number.

 

nSecond

Another number.

 

 

Return Value

TRUE or FALSE

 

 

Examples

NA

 

 

Comments

NA

 

©2008 Aspen Research Group, Ltd. All rights reserved. Terms of Use.