The MORE THAN OR EQUAL TO (>=) operator checks whether a value is greater than or equal to another. It returns true if the first value is greater than or equal to the second, and false if it is less. It returns a boolean.
Syntax
value1 >= value2
Examples
Compare an age to a threshold
The condition is true if age is greater than or equal to 18.
age >= 18
If age >= 18, the condition is true. If age < 18, it is false.
Go further
LESS THAN OR EQUAL TO
The opposite comparison: less than or equal.
Or continue with
Formula glossary
All available operators and functions, sorted by category.