Specifies the number to compare to the bounds.
Specifies the lower bound that Number should exceed for a warning value (3) to be returned. If the warning bound is not exceeded a fail value (4) is returned. Note that the lower warning bound must be less than the lower pass bound.
Specifies the lower bound that Number should exceed for a pass value (2) to be returned.
Specifies the upper bound that Number should not exceed for a pass value (2) to be returned.
Specifies the upper bound that Number should not exceed for a warning value (3) to be returned. If the warning bound is exceeded a fail value (4) is returned. Note that the higher warning bound must be greater than the upper pass bound.
1. |
The following example returns 3 (Warning).
INRANGEW(10,-2,0,5,10)
|