The EQUAL (==) operator compares two values and checks whether they are identical. It returns true if the two values are exactly equal, otherwise it returns false. It works with both numbers and text strings, and returns a boolean.
Syntax
value1 == value2
Examples
Compare an age to a value
The condition is true only if age is exactly equal to 18.
age == 18
If age == 18, the condition is true. If age is 17 or 19, it is false.
Go further
NOT EQUAL TO
The opposite operation: testing an inequality.
Or continue with
Formula glossary
All available operators and functions, sorted by category.