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