Skip to content

Using Variables

Variables are placeholders in your templates that get replaced with real data when you apply the template. They use the {variable.name} syntax.

VariableResolves toExample output
{item.name}The item’s nameWebsite Redesign
{item.id}The item’s ID1234567890
{item.url}Link to the itemhttps://monday.com/boards/...
VariableResolves toExample output
{board.name}The board’s nameQ1 Project Tracker
{board.id}The board’s ID9876543210
VariableResolves toExample output
{me.name}Your full nameSarah Johnson
{me.email}Your email addresssarah@company.com
VariableResolves toExample output
{today}Today’s dateFebruary 16, 2026
{now}Current date and timeFeb 16, 2026 2:30 PM
{timestamp}ISO timestamp2026-02-16T14:30:00Z

Access any column value using {column.<column_id>}:

VariableResolves toExample output
{column.status}Status column valueWorking on it
{column.person}Person column valueSarah Johnson
{column.date}Date column value2026-03-01
{column.text}Text column valueHigh priority
Hi team,
Quick update on **{item.name}**:
Status: {column.status}
Assigned to: {column.person}
Last updated: {today}
— {me.name}

When applied to an item called “Homepage Redesign” with status “Working on it” and person “Alex Chen”, this produces:

Hi team,

Quick update on Homepage Redesign:

Status: Working on it Assigned to: Alex Chen Last updated: February 16, 2026

— Sarah Johnson

You can type variables directly using {curly.braces} or use the variable picker dropdown in the editor to insert them.

The editor shows variable badges highlighting detected placeholders in your template body, so you can see at a glance which variables are used.

When you select a template to apply, the preview panel shows the template with all variables resolved using real data from the current item. This lets you verify the output before posting.

If a variable can’t be resolved (e.g., a column doesn’t exist), it’s replaced with an empty string. The update is still posted — no errors occur.

To avoid surprises, check the live preview before applying.