Specifies the number to compare to the bounds.
Specifies the lower bound that Number should not exceed for TRUE to be returned. Note that LowBound must be less than HighBound.
Specifies the higher bound that Number should exceed for TRUE to be returned. Note that HighBound must be greater than LowBound.
1. |
The following example returns True. OUTOFRANGE(-1, 0,
10)
|
2. |
The following example returns False. OUTOFRANGE(5, 0,
10)
|