Skip to main content
We strongly recommend using Run Script to build automations, because it can cover all action behaviors, including actions that would otherwise need to be built manually. Just describe your requirements to AI in chat.Please note: if you add actions manually, AI will not recognize or modify them later.
Conditions let you add decision points. The workflow splits into a true path and a false path.

How to Use

  1. Add a Condition node between steps.
  2. Define one or more rules.
  3. Click Test to validate.

Operators by Field Type

Text

OperatorMeaning
is / is notExact match
contains / does not containSubstring match
is empty / is not emptyNull check

Number

OperatorMeaning
= / ≠Equal / not equal
> / ≥ / < / ≤Comparison
is empty / is not emptyNull check

Date

OperatorMeaning
is / is notExact date
is before / is afterComparison
is on or before / is on or afterInclusive
is withinRelative range
is empty / is not emptyNull check
Relative dates: today, tomorrow, yesterday, one week ago/from now, one month ago/from now, X days ago/from now. Ranges (for “is within”): past/next week, past/next month, past/next year, past/next N days.

Single Select / Multiple Select

OperatorMeaning
has any of / has all of / has none ofSet membership
is exactly / is not exactlyExact match
is empty / is not emptyNull check

Boolean

Operator
is (true / false)

Combining Rules

  • AND — all rules must be true
  • OR — any rule can be true
  • NOT — negate a rule or group
Groups can be nested:
(status is "Active" OR status is "Pending")
AND amount > 1000
Last modified on April 9, 2026