Logo
readingmonday.com Status Change Cross-Board Trigger

monday.com Status Change Cross-Board Trigger

Status changes to “Confirmed” on your Confirmations board. Your team needs to know. Logistics needs to start planning. The Production board needs a new item created with details from the confirmation.

In monday.com, you have three choices:

  1. Manually create the item on the Production board — copy-paste the details
  2. Set up a cross-board automation — but it creates items without conditions, triggering on every status change
  3. Use Connect Boards + Mirror columns — but they’re read-only and don’t trigger actions

What you actually need: Status change on Board A → creates item on Board B, but only when specific conditions are met (e.g., only when Type = “VIP Client” AND Status = “Confirmed”).

Boards Pain Point #15 + Automation Pain Point #1: Cross-Board Status Triggers Need Conditional Logic

Here’s what teams need:

When status changes on Board A:

  • Create an item on Board B (with data from Board A)
  • But only when OTHER conditions are also met:
  • Status = “Confirmed” AND Type = “Outbound”
  • Status = “Approved” AND Priority = “High”
  • Status = “Ready” AND Department = “Production”

What monday.com offers:

Monday.com’s native “cross-board create item” automation has these limitations:

  1. Single condition only — you can trigger on status change, but you cannot add a second condition like “AND dropdown = X”
  2. Limited column types for triggers — dropdown columns cannot be used as triggers in cross-board automations
  3. No conditional routing — you cannot send items to different groups on Board B based on Board A data
  4. Column mapping restrictions — Dependency, Link, Time Tracking, Location columns do not transfer

The result: Teams build 10+ separate automations to handle different combinations, or resort to manual workflows.

What Monday.com Users Are Saying

Thread: Match automations need dropdown menus as column change trigger — 2023

Monday.com’s “match” automations only support specific column types as triggers. Dropdown columns are excluded from the column change trigger selector.

Thread: Create item in another board — location column not copying — April 2025

“When I try to create an item via automation from 1 board to a second board, location columns on the source board don’t appear to be supported to copy to the second board.” — julDH14 (Julie H), April 1, 2025

No monday.com staff response. Location columns are not supported in cross-board column mapping.

Thread: Automations to add or remove a dropdown item between boards — August 2024

“Automations are unable to do cross-board data mirroring that triggers a drop down item to be added or deleted from another board.” — nataliecanestro, August 15, 2024

Dropdown column values do not reliably transfer cross-board.

Official monday.com documentation confirms (Cross-board automations – monday.com Support):

Unsupported column types for cross-board mapping:

  • Dependency
  • Link to Item
  • Time Tracking
  • Location (undocumented) Source
  • Formula, Mirror (read-only)
  • Dropdown (unreliable) Source

Supported types: Item name, People, Date, Status, Numbers, Timeline, Link, Phone, Email, Text, Priority, Label

No compound conditions — you can add conditions via the “+” button, but all conditions are AND’ed together. You cannot create OR logic. And critically, you cannot combine a status trigger with a dropdown condition because dropdown columns are not available as trigger types in cross-board automations.

Additional Cross-Board Issues (Subitems & Dropdown Reliability)

Thread: Issue with Cross-board automations for subitems — February 2024

“When a certain status of the subitem changes a new item is created into another board and the two items are connected. Monday already provides an automation like that, but it seems that the automation creates the new item and then it creates a new connection column, but it does so in the parent structure of the board, not in the subitem.

Issue: Subitem cross-board automations create connections at the parent item level, not the subitem level. Data doesn’t sync properly when subitems are involved.

Thread: Automations to add or remove a dropdown item between boards — August 2024

“Automations are unable to do cross-board data mirroring that triggers a drop down item to be added or deleted from another board. Dropdown column values do not reliably transfer cross-board.” — nataliecanestro, August 15, 2024

Issue: Dropdown options are unreliable in cross-board workflows. Values that transfer successfully from one board may not transfer to another, especially if the dropdown options don’t match exactly by name or ID.

Third-party tool notes (MoveoBoost: Advanced Automation for monday.com):

“Mirror Columns Show Static Data: Mirror columns display the current linked item data, but do not trigger automations when that data changes.”

Implication for cross-board triggers: If you try to use Mirror columns as a trigger source for cross-board automations, they won’t fire because mirror columns are read-only and don’t register changes.

Cross-Board Workflows That Actually Work

One trigger, actions across multiple boards. No more one-automation-per-board limits.

How BoardBridge Solves This

BoardBridge’s conditional cross-board trigger workflow allows you to create items on Board B based on status changes on Board A, with full conditional logic:

Example: Travel Item Creation

Trigger Board: Band Confirmations Target Board: Travel

Rule:

  • When: Status changes to “Confirmed”
  • AND: Dropdown “Type” = “Outbound”
  • Then: Create an item on the Travel board with:
  • Item name from Band Confirmations
  • Date from Confirmations → Travel Date
  • Type → “Outbound Travel”
  • Destination from Location column

Different rule:

  • When: Status changes to “Confirmed”
  • AND: Dropdown “Type” = “Return”
  • Then: Create an item on the Travel board with:
  • Item name from Band Confirmations
  • Date from Confirmations → Travel Date
  • Type → “Return Travel”

Result: One status change on the Confirmations board can trigger different actions on the Travel board depending on the Type dropdown value.

How It Works

Step 1: Status Change Webhook

BoardBridge monitors the Band Confirmations board via a webhook. When any column changes, the webhook fires with details about which item, which column, and what the new value is.

Step 2: Evaluate All Conditional Rules

The system queries all workflow rules configured for the Confirmations board where:

  • trigger = "status_change"
  • column = "confirmation_status"
  • value = "Confirmed"

For each matching rule, the system checks if additional conditions are met:

“`javascript // Fetch the full item data from monday.com const item = await getItemColumnValues(itemId);

// Check the Type dropdown if (item.type_dropdown === “Outbound”) { // This rule matches } “`

Step 3: Create Item on Target Board

If all conditions match, create an item on the Travel board:

graphql mutation { create_item( board_id: "travel_board_id", group_id: "outbound_group", item_name: "Alex Johnson - Outbound Travel", column_values: { "date_column": "2026-03-15", "type_status": "{\"label\":\"Outbound Travel\"}", "destination_text": "Chicago" } ) }

Step 4: Log the Action

The system logs which rule fired, which item was created, and on which target board. This appears in the admin panel for audit and debugging.

See How BoardBridge Handles Automation

Book a free demo to see BoardBridge solve this exact problem — live, with your data.

Compound Conditions: AND Logic

You can configure multiple conditions that must ALL be true for the action to fire:

Example:

  • Status = “Confirmed”
  • AND Type = “VIP Client”
  • AND Priority = “High”

Only when all three conditions are true does the cross-board item creation fire.

Why this matters: With native monday.com, you’d need separate automations for every combination:

  • Automation 1: Status = Confirmed + Type = VIP → Action
  • Automation 2: Status = Confirmed + Type = Standard → Different Action
  • Automation 3: Status = Confirmed + Type = VIP + Priority = High → Another Action

With compound conditions, you define one rule with multiple AND conditions instead of managing 10+ separate automations.

Conditional Group Routing

Items can be created in different groups on the target board based on source item data:

Example:

When: Status = “Confirmed” AND: Type = “Outbound” Then: Create item in the “Outbound Travel” group

When: Status = “Confirmed” AND: Type = “Return” Then: Create item in the “Return Travel” group

Native monday.com cross-board automations let you specify a target group, but it’s static — you can’t dynamically route to different groups based on data.

BoardBridge evaluates the source item data and selects the target group conditionally.

Column Mapping with Type Safety

BoardBridge maps column values between boards with proper type formatting:

Text columns: Plain string Status columns: {label: "text"} format, resolving label text to the correct status ID on the target board Dropdown columns: Same as status — text label resolution Date columns: ISO 8601 date string Number columns: Numeric value Email columns: {email: "address", text: "display name"}

Why this matters: Monday.com uses different internal IDs for status labels on different boards. If you try to copy a status ID from Board A to Board B, it fails. BoardBridge maps by text label, which resolves correctly across boards.

Real-World Example: Event Confirmations → Travel Board

Confirmations Board columns:

  • Name: “Alex Johnson”
  • Status: “Confirmed”
  • Type: “Outbound” (Dropdown)
  • Date: March 15, 2026
  • Destination: “Chicago”

When status changes to “Confirmed”:

  1. BoardBridge evaluates the Type dropdown
  2. Type = “Outbound” → rule matches
  3. Creates item on Travel board:
  • Item name: “Alex Johnson – Outbound Travel”
  • Travel Date: March 15, 2026
  • Type: “Outbound Travel” (Status)
  • Destination: “Chicago”
  1. Item appears in the “Outbound Travel” group

Result: Zero manual item creation. Travel team sees the new travel item instantly.

Multiple Actions Per Trigger

One status change can trigger multiple cross-board actions:

When: Status = “Confirmed”

Actions:

  1. Create item on Travel board
  2. Create item on Production board
  3. Update status on Master Dashboard
  4. Send email to logistics team

All actions fire from one trigger, with independent conditional logic per action.

Limitations You Should Know

Dropdown and status conditions require exact text matches. If your dropdown has “VIP” but you configure the condition to check for “Vip” (different capitalization), it won’t match. Text matching is case-sensitive.

OR logic is not supported. All conditions are AND’ed together. If you need “Status = A OR Status = B,” you’d create two separate rules.

Connect Boards columns are not supported as data sources for mapping. If you need to pull data from a connected item, you’d use Mirror columns on the source board first.

Need Help With Your monday.com Setup?

TaskRhino has implemented monday.com for 110+ teams. Get a free consultation.

Frequently Asked Questions

How can I trigger creation of a Production board item only when status changes to ‘Confirmed’ on Confirmations board, without firing on every status update?

monday.com native cross-board automations lack compound conditions, so they create items on every status change without filtering for ‘Confirmed’ specifically. Use BoardBridge to set up a trigger with AND logic: ‘When status = Confirmed on Confirmations board, create item on Production board with mapped details.’ This evaluates conditions in 1-3 seconds via webhook and monday.com API, ensuring precise, conditional item creation.

Why do native monday.com cross-board automations create duplicate items on my Production board for every status change instead of just ‘Confirmed’?

Native automations support single-condition triggers like status changes but cannot apply AND/OR logic to check if the status is specifically ‘Confirmed’ before creating items. BoardBridge overcomes this with compound conditions, allowing you to define ‘status = Confirmed AND other criteria’ to prevent duplicates and map multiple columns dynamically. Mirror columns or Connect Boards won’t work as they are read-only and don’t trigger actions.

Can I use Connect Boards with mirror columns to auto-create and populate Production items from Confirmations board status ‘Confirmed’ changes?

Connect Boards and mirror columns are read-only, so they display data but cannot trigger item creation or updates based on status changes. For conditional creation with data mapping from Confirmations to Production, BoardBridge provides cross-board automations with flexible logic and two-way syncing capabilities. Native match automations require exact column matches but don’t handle conditional creation reliably.

What’s the best way to copy multiple column values from a ‘Confirmed’ item on Confirmations board to a new Production board item automatically?

Native cross-board automations allow basic item creation but fail to map 5+ columns dynamically or apply conditions like status = ‘Confirmed’. BoardBridge supports precise column mapping across boards with compound conditions, creating the Production item only when criteria match and populating all relevant details instantly. This avoids manual copy-paste or unreliable templates that trigger on every change.

How to avoid duplicate Production items when using automations triggered by any status change on Confirmations board?

monday.com’s native automations trigger on column changes without conditional filtering, leading to duplicates unless manually managed, and date/status updates exacerbate this. Implement BoardBridge for AND conditions like ‘status changes to Confirmed AND no existing connected item,’ which prevents duplicates while mapping data and supports cross-board connections. Connected Boards with mirrors update existing items but can’t create new ones conditionally.

Is there a monday.com automation to create connected items on Production board with full details only on ‘Confirmed’ status from Confirmations board?

Standard cross-board templates create and connect items but lack conditions to fire only on ‘Confirmed’ and struggle with complex data mapping. BoardBridge enables this via custom compound logic: trigger on Confirmations status = Confirmed, create/connect Production item, and map/populate columns like name, dates, and requirements. This works faster than scheduled options and scales across multiple boards without third-party tools like Make.com.

Editor's Choice