Skip to content

Relations, Lookup & Formula

Relation, Lookup, Rollup, and Formula are the four advanced column types that let you link and compute data across different tables.


A relation links rows in one table to rows in another table (or the same table).

  • “Shootings” links to “Models” — each shooting knows which models are booked
  • “Tasks” links to “Projects” — each task is assigned to a project
  • “Equipment list” links to “Equipment inventory” — you always know where each item is
  1. New column → type Relation
  2. Choose the target table (must be in the same workspace)
  3. Optionally: give the other side a name (it will appear as a new column in the target table)

Click on a Relation cell → + Link row → select from the list of existing entries. Multiple links per cell are supported.


A Lookup displays the value of a column from a linked row (read-only).

  1. New column → type Lookup
  2. Choose the Relation column (must already exist)
  3. Choose the target column in the linked table

Example: In the Shootings table, a Lookup on the email address from the Models table. The email appears automatically.


A Rollup aggregates values from a linked table (via a relation).

FunctionDescription
countNumber of linked rows
count_emptyNumber of empty values
count_not_emptyNumber of non-empty values
count_uniqueNumber of unique values
sumSum (numbers only)
avgAverage
min / maxSmallest / largest value
earliest / latestEarliest / latest date
checked / uncheckedNumber of checkboxes
pct_checkedPercentage checked
  1. New column → type Rollup
  2. Choose the Relation column
  3. Choose the target column
  4. Choose the aggregation function

A Formula field calculates a value based on other columns in the same row.

Formulas reference column names in curly braces:

{Price} * {Quantity}
{LastName} & ", " & {FirstName}
IF({Status} = "Done", "✓", "–")
  • Arithmetic: +, -, *, /
  • Text: & (concatenation)
  • Comparison: =, !=, >, <, >=, <=
  • Logical: AND(...), OR(...), NOT(...)
  • Functions: IF(...), ROUND(...), LEN(...), UPPER(...), LOWER(...), TRIM(...)

Click the column name → Edit formula → type the formula into the input field. A live preview shows the calculated value.