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