
Boards Pain Point #51: No dynamic group routing
When you create a new item on a Monday.com board via automation, you want control over which group it lands in. If you’re creating a travel booking, it should go into the “Outbound Travel” group, not the “Lodging” group. If you’re adding a confirmed band member to a roster, they should appear in the “Confirmed” group, not “Pending.”
The Monday.com limitation: Native cross-board automations create items in the default group (usually the top group on the board). You can’t specify “create item in the ‘Confirmed’ group” dynamically. You also can’t prevent duplicate items from being created in the same group — Monday.com’s duplicate prevention is board-wide, not group-aware. This is one of many monday.com cross-board automation limitations.
What you actually need:
Create monday.com items in specific groups by name with dynamic routing and group-aware duplicate prevention. Control item placement, not just default groups.
For more on smart item routing:
Groups are organizational sections within a board. They’re like “categories” or “buckets” for items.
Example board: Band Confirmations
Use case: When a band member’s status changes to “Confirmed,” you want to move them from “Pending” group to “Confirmed” group.
Monday.com’s automation center includes a “Move item to group” action:
This works for single-board item movement. But it doesn’t work for cross-board item creation.
When you use a cross-board automation like “When status changes on Board A, create item on Board B,” the item is created in the default group on Board B (usually the topmost group).
Official Monday.com documentation on cross-board automations:
“When creating items on another board via automation, the item will be created in the default group.”
There is no “create item in specific group” option in the native automation builder.
Source: https://support.monday.com/hc/en-us/articles/360011393900-Cross-board-automations
Thread: “Duplication of Items in the same Board (between Groups)” (March 2025)
User describes automation creating items hundreds of times:
“When it comes to duplicating items within the same Board and having them move to a different Group, my automation runs steady and copies my item hundreds of times and will not stop until I turn off the automation – what I want is only one duplication (per group), and it auto-moved to its corresponding group.”
The user wants group-aware duplicate prevention — create one item per group, not hundreds.
Source: https://community.monday.com/t/duplication-of-items-in-the-same-board-between-groups/110743
Thread: “Auto-copy items from one board to another” (November 2023)
User wants to copy roster items from one board to another into specific groups based on item properties. Monday.com’s native automation doesn’t support this.
Suggested workaround: Use Monday.com’s “move item to group” automation after creating the item. This requires two separate automations (one to create, one to move), which is inefficient and creates a brief moment where the item is visible in the wrong group.
Source: https://community.monday.com/t/auto-copy-items-from-one-board-to-another/71321
Cross-Board Workflows That Actually Work
One trigger, actions across multiple boards. No more one-automation-per-board limits.
BoardBridge’s automation engine supports target group specification when creating items on other boards. You can specify the target group by name, and the system auto-resolves it to Monday.com’s internal group ID.
Example workflow:
Board 1: Band Confirmations
Board 2: Travel Bookings
Desired automation:
How BoardBridge handles this:
group_abc123group_def456group_ghi789group_abc123)create_item mutation with group_id parameter:“graphql mutation { create_item( board_id: 987654321, group_id: "group_abc123", item_name: "John Smith - Outbound Travel", column_values: "{...}" ) { id } } “
Time: 1-2 seconds from status change to item creation in the target group.
Monday.com’s API includes a create_item_if_column_value_not_exists mutation that prevents creating duplicate items if a specific column value already exists on the board.
Example:
The limitation: This check is board-wide, not group-specific.
Real-world scenario where board-wide duplicate prevention fails:
Travel board has 2 groups:
Workflow:
With board-wide duplicate prevention:
What you actually need: “John Smith” can exist once in Outbound Travel AND once in Return Travel, but not twice in the same group.
BoardBridge’s automation engine includes a group-aware duplicate prevention option:
Configuration:
What happens:
Later:
Result: “John Smith” exists once in Outbound Travel and once in Return Travel. No duplicates within the same group.
See How BoardBridge Handles Automation
Book a free demo to see BoardBridge solve this exact problem — live, with your data.
You can route items to different groups based on trigger conditions.
Automation 1:
Automation 2:
Result: Items automatically route to the correct group based on the Travel Direction dropdown value.
Automation:
Result: Support requests automatically route to different task groups based on priority.
Automation:
Result: Items automatically move between groups as their status changes.
| Feature | Monday.com Native Cross-Board Automations | BoardBridge Group-Aware Creation |
|---|---|---|
| Create item in default group | ✓ Yes | ✓ Yes |
| Create item in specific group by name | ✗ No | ✓ Yes |
| Group name auto-resolves to group ID | N/A | ✓ Yes |
| Duplicate prevention (board-wide) | ✓ Yes (via API mutation) | ✓ Yes |
| Duplicate prevention (group-aware) | ✗ No | ✓ Yes |
| Dynamic group routing based on conditions | ✗ No (requires multiple automations + manual movement) | ✓ Yes (one automation, multiple target groups) |
| Move item between groups (same board) | ✓ Yes | ✓ Yes |
| Cross-board item creation + group placement (one action) | ✗ No (two automations required) | ✓ Yes |
| Works after board duplication | ~ Partial (group names preserved but automation references may break) | ✓ Yes (group names resolve dynamically) |
Items land in the correct group from the moment they’re created. No brief period where items appear in the wrong group before being moved.
Example:
When loading team rosters onto project boards, you can route different roster types to different groups.
Example:
As items move through workflow stages (Pending → Confirmed → Completed), they automatically move between groups.
Example:
When automations fire multiple times (e.g., webhook fires twice accidentally, or user repeatedly clicks a button), group-aware duplicate prevention ensures only one item is created per group.
Example:
Need Help With Your monday.com Setup?
TaskRhino has implemented monday.com for 110+ teams. Get a free consultation.
When an automation fires, BoardBridge queries the target board’s current group structure. It finds the group matching the configured name and uses that group’s internal ID to create the item. This happens dynamically every time, so renamed groups are automatically detected.
The automation continues to work. Since group name resolution is dynamic, it finds the renamed group automatically. You don’t need to update the automation configuration.
Yes. Add multiple “create item” actions, each targeting a different group. One trigger (status change) fires both actions, creating items in multiple groups simultaneously.
Board-wide: “If John Smith exists anywhere on the board, don’t create.” Result: John appears once in Outbound Travel, but Return Travel item isn’t created. Group-aware: “If John Smith exists in the Outbound Travel group, don’t create. If John exists in Return Travel group, don’t create. But John can exist in both groups.” Result: John appears in both groups (once each).
Yes. You can configure multi-column duplicate checks. Example: Check if (Name = “John Smith” AND Email = “john@example.com”) exists in the target group.
The automation fails and logs an error: “Target group ‘Outbound Travel’ not found.” You can configure a fallback behavior (create in default group, skip creation, or alert admin).
Yes. Subitems can be created in specific groups within the subitems section of a parent item. The same duplicate prevention logic applies.
Yes. Automation: “When status changes to X, move item to group Y.” This is a single-board action and works natively on monday.com as well. For cross-board movement, use BoardBridge.
In the BoardBridge admin panel, you can preview which group an item would be created in based on current column values. This lets you verify the logic before triggering the automation.
Yes. Example: – If Trip Type = “Outbound” → create item in “Outbound Travel” group – If Trip Type = “Return” → create item in “Return Travel” group When you create 100 travel items per project, you don’t want all 100 landing in the default group at the top of the board. You want outbound travel in one group, return travel in another, and cancelled bookings in a third. Items should land in the correct group from the moment they’re created—not in a catch-all group that requires manual sorting. monday.com’s native cross-board automations can’t specify target groups. You need two automations (create item, then move item), which is inefficient and creates a moment where items appear in the wrong place. BoardBridge solves this with group-aware item creation: one automation, items placed correctly, group-aware duplicate prevention, dynamic routing, and no manual movement needed. See it in action. Book a consultation: https://calendly.com/rp-spaceo/call-with-rakesh-est-timezone
Here’s a step-by-step guide:
Source board: Band Confirmations
Target board: Travel Bookings
{{Name}} - Outbound Travel{{Name}}{{Email}}{{Departure Airport}}{{Flight Time Preference}}Group-aware item creation and duplicate prevention are included in BoardBridge’s core automation engine.
What you get:
Book a free consultation to see group-aware routing in action: https://calendly.com/rp-spaceo/call-with-rakesh-est-timezone
When an automation fires, BoardBridge queries the target board’s current group structure. It finds the group matching the configured name and uses that group’s internal ID to create the item. This happens dynamically every time, so renamed groups are automatically detected.
The automation continues to work. Since group name resolution is dynamic, it finds the renamed group automatically. You don’t need to update the automation configuration.
Yes. Add multiple “create item” actions, each targeting a different group. One trigger (status change) fires both actions, creating items in multiple groups simultaneously.
Board-wide: “If John Smith exists anywhere on the board, don’t create.” Result: John appears once in Outbound Travel, but Return Travel item isn’t created.
Group-aware: “If John Smith exists in the Outbound Travel group, don’t create. If John exists in Return Travel group, don’t create. But John can exist in both groups.” Result: John appears in both groups (once each).
Yes. You can configure multi-column duplicate checks. Example: Check if (Name = “John Smith” AND Email = “john@example.com”) exists in the target group.
The automation fails and logs an error: “Target group ‘Outbound Travel’ not found.” You can configure a fallback behavior (create in default group, skip creation, or alert admin).
Yes. Subitems can be created in specific groups within the subitems section of a parent item. The same duplicate prevention logic applies.
Yes. Automation: “When status changes to X, move item to group Y.” This is a single-board action and works natively on monday.com as well. For cross-board movement, use BoardBridge.
In the BoardBridge admin panel, you can preview which group an item would be created in based on current column values. This lets you verify the logic before triggering the automation.
Yes. Example:
When you create 100 travel items per project, you don’t want all 100 landing in the default group at the top of the board. You want outbound travel in one group, return travel in another, and cancelled bookings in a third.
Items should land in the correct group from the moment they’re created—not in a catch-all group that requires manual sorting.
monday.com’s native cross-board automations can’t specify target groups. You need two automations (create item, then move item), which is inefficient and creates a moment where items appear in the wrong place.
BoardBridge solves this with group-aware item creation: one automation, items placed correctly, group-aware duplicate prevention, dynamic routing, and no manual movement needed.
See it in action. Book a consultation: https://calendly.com/rp-spaceo/call-with-rakesh-est-timezone
Editor's Choice

monday.com Automation Safety: Preventing Duplicate Items

monday.com No Dry-Run Mode for Automations

monday.com Automation Test Sandbox Mode