>= Operator (Greater Than or Equal)

Syntax

Expression >= Expression

See also: Operators, IF, True, False

Summary

The >= operator returns True if the value of the left-hand term is greater than or equal to the right-hand term.  Otherwise it returns False.

Example

IF(3 >= 2, 10, 5) = 10