Skip to content

=!CONTAINS (Does Not Contain)

The !CONTAINS Function checks whether a specified value does not appear anywhere within another text value.

It returns TRUE if the search text is not found, and FALSE if the search text is found.

=!CONTAINS(DoesThisValueNotExist; AnywhereInsideThisValue)
  • DoesThisValueNotExist
    The text you want to search for.

  • AnywhereInsideThisValue
    The text (or field token) to search within.

In the Calculated Value section of a process field, type =!CONTAINS, followed by the value you want to search for, a semicolon (;), and the text or field you want to evaluate.

  • The search checks for the value anywhere within the target text.

  • Useful for conditional logic, filtering, and rule-based automation.

=!CONTAINS(Easy; [Field token])

If the token does not contain the word Easy, the function returns TRUE.


!CONTAINS, does not contain, text search, string comparison, conditional logic, validation, filtering, boolean function, calculated value, formula function