Specifies the number to compare to the bounds.
Specifies the bound that Number should exceed for a pass value (2) to be returned.
Specifies the 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 warning bound must be smaller than the pass bound.
1. |
The following example returns 2 (Pass).
GREATEROREQUALW(10,5,-1)
|
2. |
The following example returns 3 (Warning).
GREATEROREQUALW(0,5,-1)
|
3. |
The following example returns 4 (Fail).
GREATEROREQUALW(-2,5,-1)
|