GREATEROREQUALW function

Synopsis
This function returns whether the number is greater than or equal to the specified pass and warning bounds.
Variations
GREATEROREQUALW(Number, PassBound, WarnBound)
Returns whether the number is greater than or equal to the pass and warning bounds.
Parameters
Number

Specifies the number to compare to the bounds.

Supported types: Numeric.
PassBound

Specifies the bound that Number should exceed for a pass value (2) to be returned.

Supported types: Numeric.
WarnBound

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.

Supported types: Numeric.
Returns
Returned types: Numeric.
Examples
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)