update_formula_field
Update an existing Airtable formula field's formula text while preserving its format and precision settings. Supports reading formula from a file for complex expressions.
Instructions
Update the formula body of an existing formula field — shorthand for update_field_config with type "formula". Automatically preserves existing format/precision typeOptions (e.g. percentV2, precision). Use update_field_config to change the field type or other typeOptions.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| appId | Yes | The Airtable base/application ID | |
| fieldId | Yes | The field/column ID (e.g. "fldXXX") | |
| formulaText | No | The new formula text | |
| formulaFilePath | No | Path to a local .formula or .fx file. When provided, reads formula from file instead of formulaText (unblocks large formulas that exceed LLM output limits). The # AT: metadata header is stripped automatically. | |
| debug | No | When true, include raw Airtable response in output for diagnostics |