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