Skip to content

=EQUALS

The EQUALS function checks whether a value (typically a process field) matches any of the specified comparison values. Commonly used for validation, conditional logic, and workflow decisions. The EQUALS function is formatted as follows:

=EQUALS(DoesThisValue; EqualThisValue; AndThisValue; AndAllOtherValuesWithinTheParens)
  • DoesThisValue

    • The value or process field you want to evaluate.
  • EqualThisValue, AndThisValue, AndAllOtherValuesWithinTheParens

    • One or more values to compare against.

    • Each value must be separated by a semicolon (;).

  • Compares DoesThisValue against all provided comparison values.

  • If the value matches any of the listed values, the function returns 1 (true).

  • If the value matches none of the listed values, the function returns 0 (false).

  • You may include as many comparison values as needed.

  • All comparisons are evaluated within the same set of parentheses.

  • Semicolons (;) are required to separate values.

  • Formula functions are case sensitive and must be written in ALL CAPS.

=EQUALS([[Field: number (Number)]]; 1)
  • Returns 1 (true) if the field value is 1.


EQUALS, equals function, value comparison, field validation, conditional logic, workflow formulas, process field comparison, boolean function, formula function