The GREATER THAN (>) or MORE THAN (>) operator in English is used to check if 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 to the second. This operator is widely used for numerical comparisons or to verify thresholds above a certain limit.
➡️ Display Name:
➡️ Syntax: :
➡️ The Example:
In this example, the condition will be true if the age is greater than 18, and false if the age is less than or equal to 18.
- 1 value 🟡 : age is the first value to compare.
- 1 operator 🟣 : > checks if the age is strictly greater than the second value.
- 1 value 🟡 : 18 is the reference value against which the age is compared.
🟰 Expected Result:
- If age > 18, the condition is true.
- If age <= 18, the condition is false.
💡 Comparison with other operators:
Unlike the GREATER THAN OR EQUAL TO (>=) operator, which includes the limit value, GREATER THAN (>) only works for strictly greater comparisons, excluding equal values. This helps to check if a value strictly exceeds another.
Before You Start
Getting Started with Formulas
The new formulas in Timetonic allow you to transform, calculate, and manipulate the information stored in your columns by combining multiple functions...
Or Continue With
Glossary View of Formulas
Quickly find the function or operator you're looking for or simply explore and learn how to use them...
Comments
0 comments
Please sign in to leave a comment.