# Column Reference Syntax

## In Formulas

When writing formulas in Formula Pro automations, you reference columns using placeholders. The exact syntax depends on the integration context:

### `{item's ColumnName}`&#x20;

In documentation and recipe builders, columns are often shown as:

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

Replace `ColumnName` with your actual column title.

### Literal Prefixes

When a literal character precedes a placeholder (e.g., `#` before a code), use concatenation:

```
CONCATENATE("#", {item's Code})
```

## Column Types and Formats

| Column Type | Format / Notes                                 |
| ----------- | ---------------------------------------------- |
| Text        | Plain string                                   |
| Numbers     | Numeric value; use in math directly            |
| Date        | `YYYY-MM-DD` or datetime `YYYY-MM-DD HH:mm:ss` |
| Timeline    | `YYYY-MM-DD+YYYY-MM-DD` (start+end)            |
| Status      | Status label (e.g., "Done", "In Progress")     |
| People      | User ID or display format depending on context |
| Location    | May include `lat:lng:address` format           |
| Email       | `email:Display Name` for link columns          |
| Link        | `url:Label` format                             |

## Common Patterns

### Extracting parts of Timeline

```
LEFT({item's Timeline}, 10)   → Start date
RIGHT({item's Timeline}, 10)  → End date
START({item's Timeline})      → Start (Formula Pro)
END({item's Timeline})        → End (Formula Pro)
```

### Date formatting

```
TEXT(DATEVALUE({item's Date}), "YYYY-MM-DD")
FORMAT_DATE({item's Date}, "MMM DD, YYYY")
```

### Conditional with column value

```
IF({item's Status} = "Done", "Complete", "Pending")
SWITCH({item's Priority}, 1, "High", 2, "Medium", "Low")
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://formulapro.shadebridge.com/formula-pro/appendix/column-syntax.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
