Formula Basics

Column Reference Syntax

In Formula Pro, you reference column values using the {item's ColumnName} syntax:

{item's Status}
{item's Date}
{item's Number}
{item's Timeline}

When configuring automations, column placeholders are replaced with actual values at runtime. In the formula editor, you'll see placeholders like $values.pulse.column_id.value — these map to your selected columns.

Formula Structure

Formulas follow standard function-call syntax:

FUNCTION_NAME(argument1, argument2, ...)

Examples:

SUM(5, 10, 15)                    → 30
CONCATENATE("Hello", " ", "World") → "Hello World"
IF({item's Number} > 10, "High", "Low")

Common Patterns

Date formatting

Conditional logic

Timeline handling

Excel Compatibility

Formula Pro implements 399+ Excel functions from categories including:

  • Math and trigonometry

  • Statistical

  • Date and time

  • Text

  • Logical

  • Lookup and reference

  • Financial

  • Engineering

See the Excel Functions Reference for the full list.

Last updated