jord8on wrote:
@Karlstens, thank you! The logic here is brilliant… and a script/flow to make it all happen… it would seem.
Unfortunately, I didn’t have the chops to employ the script and get what I needed from it. I tried to add a script from an Airtable extension and didn’t know which fields I needed to change, so kind of got lost, right after pasting your snippet.
But you inspired me so I figured out a flow that is quite laborious but much better than doing it all manually…
- I went back to Table A and created a formula field that extracted the record id for reach record.
- I went into Table B and created a Lookup field for Column1 and a second lookup field for Column2 where I was looking up the Record ID field
- I copied both cells, and pasted in a text editor, and merged them all together, separated by a comma+space
- Pasted the full list (duplicates and all) in this tool: Remove duplicates from list | Helper Set
- Copied the output list, then pasted in the new Source of Truth field.
Here’s a video illustration:
I’ve created a sample base, you may copy it to your workspace if you like too, let me know.
Here is a Palette table, and the idea is we have colours in three linked fields. An old, a new, and also a merged colour field.

The colour table is straight forward, containing colours and their associated linked records to the palette table (which are created automatically when you link fields in the Palette table).

The idea is, to trigger the Merge script, simply tick the record tick-box, and then the Automation will trigger and merge the old and new linked fields into the merge field.
The Automation is based on a Record Matches Condition trigger, I then used the Automation conditional Logic cause it may make it easier to follow (you can see instantly that a script executes upon the tick-box being ticked).

And the script below takes the record ID’s from the old and the new linked field, combines them into a Set (google javascript Sets) which removes duplicates.

The resulting array is then mapped them into the Object format required by Airtable to be written into the third linked field “Merged Palette”.
For this script to work, I pass the tick-box record field from the Automation trigger into the script like this;

const inputConfig = input.config();
const table = base.getTable("Palattes");
const myRecord = await table.selectRecordAsync(inputConfig.recordID, { fields: ["Old Palette", "New Palette"]
})
const firstArrayObj = myRecord.getCellValue("Old Palette")
const secondArrayObj = myRecord.getCellValue("New Palette")
//Convert the two object arrays, into one string array. Set will de-duplicate, then need to convert back to array, from that set.
let deDupedArray = Array.from(
new Set([...firstArrayObj.map( record => record.id), ...secondArrayObj.map( record => record.id)]));
console.log(deDupedArray);
//We then take that de-dupled string Array, and stamp it into the Object format for use with Airtable Link Field.
let mergedArrayObj = deDupedArray
.filter((element) => element != null)
.map((element) => ({
id: element
}));
console.log(mergedArrayObj);
await table.updateRecordAsync(inputConfig.recordID, {
"Merged Palette": mergedArrayObj,
"Merge Palette" : false
});
What I’ve demo’d here can be done differently and in various ways, but I’m hoping this will get you to where you need to be. I watched your recording, and couldn’t help but help you more as there’s nothing worse than manual workflows that needn’t be. :slightly_smiling_face:
OK, my lunch break is over, back to my own work! :hamburger: