Checks whether a number falls within a range, and returns a Boolean True or False.
|
Syntax:
|
Range(value, lower,upper)
|
Parameters:
|
value: The value to be checked.
lower: A value that represents the lower limit of the range.
upper: A value that represents the upper limit of the range.
|
Returns:
|
TRUE' if Lower =< VALUE <= Upper
|
Example:
|
Range(10,5,15) evaluates to TRUE.
|
Note:
|
Like MIN or MAX, any Attributes are allowed as long as they are shared by all parameters.
|
See also:
|
MIN, MAX
The Online and Rich Client Samples projects (program NM08 and RNM08)
|