Skip to main content

Action Operators

Learn about the operators that are present on the switch and branch actions

Bryce DeCora avatar
Written by Bryce DeCora
Updated over a week ago

You have the option of many different operators. Each operator automatically tries to convert the input into the expected type for comparison. In short, the left value, right value and operator are very smart.

Aside from the operators equal and not equal which can work for multiple different types of inputs, the rest of them are variable-specific.

Comparing Numbers

If you have numbers you're trying to compare, you should probably use the following operators:

  • Less Than

  • Greater Than

  • Less Than Equal (less than or equal to)

  • Greater than Equal (greater than or equal to)

Comparing Dates

If you're comparing dates, you should likely use the following:

  • Date After

  • Date Before

  • Date Equal

Comparing Text

When comparing text, you'll want to pay extra attention to:

  • Contains

  • Starts With

  • Ends With

Did this answer your question?