OperatorSyntaxPurpose
+value_1 + value_2Adds value_1 and value_2.
-value_1 - value_2Subtracts value_2 from value_1.
*value_1 * value_2Multiplies value_1 and value_2.
/value_1 / value_2Divides value_1 by value_2.
Any data type
=value_1 = value_2Returns Yes if value_1 is equal to value_2, and No otherwise.
!=value_1 != value_2Returns Yes if value_1 is not equal to value_2, and No otherwise.
Numbers, Dates, String
>value_1 > value_2Returns Yes if value_1 is greater than value_2, and No otherwise.
<value_1 < value_2Returns Yes if value_1 is less than value_2, and No otherwise.
>=value_1 >= value_2Returns Yes if value_1 is greater than or equal to value_2, and No otherwise.
<=value_1 <= value_2Returns Yes if value_1 is less than or equal to value_2, and No otherwise.
Logical
ANDvalue_1 AND value_2Returns Yes if both value_1 and value_2 are Yes, and No otherwise.
ORvalue_1 OR value_2Returns Yes if either value_1 or value_2 is Yes, and No otherwise.
NOTNOT valueReturns Yes if value is No, and No otherwise.
ConstantMeaning
yesTRUE
noFALSE
nullNo value
^value_1^value_2Caret symbol (^) is used to represent the exponentiation operator, which raises a number to a power.