Calculations and comparisons

Create steps in your workflow that allow calculations.

Calculating formulas

  1. In your workflow editor, click + Add step.
  2. Select Integrations > Quick action.
  3. Click Configure .
  4. Click the Quick Action operation field and select Calculate formula.
  5. Enter your formula.
    Tip: you can include numbers, brackets, operators and data references (the values in input fields from previous steps)

πŸ“˜

The value of exponent (**) can't exceed 4000,000.00

  • If you want to use the calculation result in later steps add the result variable in the Response data for use in later steps. The variable's value should be $.result

Supported operations

Calculating formulas

-add1+1 = 2
-subtract4-2 = 2
/divide4/2 = 2
-multiply2*2 = 4
**exponents (to the power of)3**2 = 9
%remainder (amount left over)5%2 = 1

Comparing data

==equals2==2 = true
<less1<2 = true
>greater1<2 = false
<=less than2<=2 = true
> =greater than1>=2 = false