Automatically merge two lists of records by a shared ID

Combines two separate data lists into one, matching rows by a common ID so nothing gets duplicated or missed.

How the work actually flows

It branches. Every path runs; all paths must finish before it continues; runs once per one per row in each list.

Pattern: Parallel Split (2) ยท Synchronisation (3)

flowchart TD trig[\"two record lists available"\]:::trigdata s0[["receive two record lists"]]:::mi s1["combine matched records"]:::task trig --> s0 gx{"+ which list is processed"}:::gate s0 --> gx p00["verify list a rows"]:::task gx -->|"list a path"| p00 p10["verify list b rows"]:::task gx -->|"list b path"| p10 jn{"+ matched by id"}:::gate p00 --> jn p10 --> jn jn --> s1 out[/"merged record list produced"/]:::out pay{{"eliminates manual data matching"}}:::pay s1 --> out out --> pay classDef task fill:#e7f6fe,stroke:#34b8f0,color:#2c2a29 classDef svc fill:#f6f8fa,stroke:#7c8795,color:#2c2a29 classDef mi fill:#e7f6fe,stroke:#0079a8,color:#2c2a29,stroke-width:2px classDef human fill:#fff,stroke:#0079a8,color:#0079a8 classDef store fill:#f6f8fa,stroke:#0079a8,color:#2c2a29 classDef trig fill:#00a4eb,stroke:#0079a8,color:#fff,font-weight:bold classDef trigtime fill:#00a4eb,stroke:#0079a8,color:#fff,font-weight:bold classDef trigdata fill:#8ad4f5,stroke:#0079a8,color:#06314c,font-weight:bold classDef gate fill:#fff,stroke:#e8a23d,color:#6b4708,font-weight:bold classDef out fill:#1f9d6b,stroke:#167a53,color:#fff,font-weight:bold classDef pay fill:#06314c,stroke:#021f33,color:#fff
Starts itA stepRuns once per itemEvery pathWaits for allResultPayoff
Build size
Standard

A mid-size build with several tools working together.

Business functions
General Automation
Connects
Google Sheets

The problem it solves

When you keep customer or order information in two different places, matching it up by hand is slow and error-prone. You end up with duplicate rows or missing matches that take time to untangle.

Who it fits

Operations or admin staff who regularly combine records from two different lists or systems.

How it works

  1. Two lists of records come in, for example from two spreadsheets or exports
  2. Each list is checked to make sure every row is treated as its own record
  3. The system matches rows between the two lists using a shared ID
  4. Matching rows are combined into a single, complete record
What you get

Records combined without duplicates or gaps

Two separate lists get matched and merged by their shared ID, so your records stay complete and nothing gets counted twice.

What you get

One combined list where matching records from both sources are merged into single rows.

What you need

Whatever accounts hold your two data sources, most commonly a Google account for Google Sheets.

We can build this. But should you?

The hard question is not how to build it. It is whether this is the right thing to build first.

That is what a Fractional Chief AI Officer figures out with you, before anyone writes a line of code.

Let's Talk Strategy

Related automations

Back to the AI Playbook