GESTEP
The GESTEP function returns 1 if number ≥ step, and 0 otherwise.
Syntax
=GESTEP(number, [step])
Parameters
number
: The value to teststep
: Optional. The threshold value to test against (default is 0)
Examples
=GESTEP(5, 4) // Returns 1 (5 ≥ 4)
=GESTEP(3, 4) // Returns 0 (3 < 4)
=GESTEP(-2) // Returns 0 (-2 < 0)