Documentation Index
Fetch the complete documentation index at: https://orangeslice.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Overview
ctx.thisRow provides convenient methods to read and write data on the currently executing row. This is the most common way to interact with your data within column formulas.
ctx.thisRow is not available in webhook columns, as there is no “current
row” context during webhook execution.Methods
get()
Get a value from the current row by column name.columnName- The name of the column to read from
Foreign Key Navigation
For foreign key columns, use the referenced sheet name instead of the column name, and use dot notation to access fields on the related record:cell()
Get a Cell object for a specific column on the current row. This is useful when you need the cell’s value + execution status + error message.columnName- The column name (or FK dot path) to read from
value— The cell’s valuestatus— Execution status (for example:"success","error","pending","running") ornullerror— Error message if execution failed, otherwisenull
thisCell (current executing cell)
If you specifically want the currently executing cell (the one this formula is running in), usectx.thisCell: