GESTEP


Description Compares two specified values and returns 1 if the first value is greater than or equal to the second value, 0 if the first value is less than the second value.

Syntax DELTA (number1 [, number2])
Argument Description
number1 A number you want to compare.
[number2] Optional. This is the number you want to compare to number1. If you omit this argument, the function will compare number1 to 0.

Remarks This function can be used in place of the equals (=) operator when a numeric rather than logical result is needed (for example, when using aggregate functions such as SUM and COUNT).

GE stands for "greater than or equal to."

Examples This function returns 0:

DELTA(6,7)

This function returns 1:

DELTA(6)

See Also DELTA, IF