Skip to main content

Formula Transformations

Formulas let you combine multiple operations into a single transformation. Instead of creating separate steps for each calculation, write one formula that does it all.

Syntax

  • Column names — Use the column name directly: Amount, Fee, Rate
  • Column names with spaces or special characters — Wrap in brackets: {Settled Amount} or [Settled Amount]
  • Numbers — Use directly: 100, 2.5, 0
  • Text — Wrap in double quotes: "-", "USD"
  • Nesting — Any argument can be another formula: ROUND(SUM(Amount, Fee), 2)

Available Functions

Math

Text

Logic

IF conditions: >, <, >=, <=, =, !=

Arithmetic Operators

You can also use standard arithmetic directly:
Division by zero is handled safely (returns empty).

Examples

Calculate a percentage

Sum two columns and round

Build a composite key

Conditional value

Net amount after fee and tax

Percentage with 4 decimal places

Column Name Rules

If the column name contains spaces, parentheses, or special characters, wrap it in { } or [ ].

Limits

  • Maximum formula length: 1,000 characters
  • Maximum nesting depth: 10 levels
  • Maximum function calls per formula: 20