Equal To | expression = expression | Tests if the left expression is equal to the right expression. Note: If rounding is required, use the Round function. Example: |
Greater Than | expression > expression | Tests if the left expression is greater than the right expression. Example: |
Greater Than or Equal To | expression >= expression | Tests if the left expression is greater than or equal to the right expression. Note: The correct syntax is “>=”. The syntax “=>” is not supported. Example: |
Less Than | expression < expression | Tests if the left expression is less than the right expression. Example: |
Less Than or Equal To | expression <= expression | Tests if the left expression is less than or equal to the right expression. Note: The correct syntax is “<=”. The syntax “=<” is not supported. Example: |
Not Equal To | expression <> expression expression != expression | Tests if the left expression is not equal to the right expression. Note: If rounding is required, use the Round function. Example: |
IsMissing | IsMissing (reference) IsMiss (reference) | Tests if the reference contains a #missing result. Note: If the reference is an expanded row or column, then all resulting cells must be #missing in order for the condition to be true. Example: Returns true if row 1 has a #missing value. |
IsError | IsError (reference) IsErr (reference) | Tests if the reference contains an #error result. Note: If the reference is an expanded row or column, all resulting cells must be #error in order for the condition to be true. Only formula rows and columns can result in #error. Example: Returns true if row 2 has a #error value. |
IsNonNumeric | IsNN (reference) IsNonNumerid (reference) IfNN (reference) IfNonNumber (reference) | Tests if the reference contains a #missing or #error results. Note: If the reference is an expanded row or column, all resulting cells must be #missing and/or #error in order for the condition to be true. Example: Returns true if row 3 has a #missing or #error value. |
Parenthesis | (condition) | Groups a condition. Example: |