Help

Re: Combining Data From Two Multiple-Select Fields Into One

6850 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Lif_Alcon
4 - Data Explorer
4 - Data Explorer

Hello all,

I am stumped. I am trying to combine data from two multiple select fields, into one. For the sake of confidentiality, I have created an example of what I am working with, using part of the Greek alphabet instead of the actual data:

Airtable Example Screenshot

The goal is to combine these two columns into a third that looks and behaves exactly the same as the first two, simply with the data from both combined, into one. As easy as this feels like it should be, every single option I’ve seen either turns the output into text strings (which renders it useless for our tracking purposes), or else it requires a great deal of manually typing or copy-pasting the individual options of the multiple select, into the formula, one by one. It should be noted that while I have only used four Greek letters here, the actual number of entries we are working with is well over 600, and with far longer names, so such a process would be a grueling time-consumer.

Surely there must be some way to automate this?

Also note that there are a couple rows in which both columns already share one of the Greek letters - assuming that there IS a way to automate this, is there also a way to account for/deal with potential duplicates?

Thank you!

21 Replies 21

Hi @Lif_Alcon,

Welcome to Airtable Community!

The easiest way to do so is to create an automation the simply copy pastes the data from both fields into a new multi select field. The trigger would be when a record is updated and Watch those 2 fields only. This however wont solve your duplicate problem. Also, keep in mind that none of your options can contain commas as it would be considered as 2 values instead of one.

If you want to remove the duplicates then it becomes a litte more complicated, you need to create a Linked Record field and paste both multi select options fields into it (using the same concept automation) then create a Rollup field in the same table with the expression ArrayUnique(Value) , this will remove the duplicates. You then can you another automation to copy paste this new rollup field to another multi select field

Hope this helps

Lif_Alcon
4 - Data Explorer
4 - Data Explorer

Hello,
Thank you for your reply. Perhaps I am misunderstanding, however, but it seems like you’re suggesting that I manually copy each cell over to create one, for each row. These columns currently have 3,069 rows, and that is only going to increase from here. Manually copying and pasting is the time-consuming nightmare that we are trying to avoid. Is there really no other way to quickly combine the two columns into one?

Or am I simply misunderstanding?

EDIT: After re-reading, I think I understand somewhat better what you’re saying, but I’m not understanding how to go about doing that, apologies - would you be willing/able to detail that a little further?

I think @Mohamed_Swellam is suggesting that you make use of Airtable’s automation feature to have this process happen automatically.

Read about automation here: Automations Overview | Airtable Support

That is definitely the goal - however, my teammate and I have spent the last week exhaustively looking through the documentation on automation, and other forums. Thus far, every single option we have found, converts the output into a text string, which as I said before, renders it useless to us.

I assure you, we have spent a great deal of time hunting for the specific steps or formula to make this work. We have not yet found it.

Nathaniel_Grano
8 - Airtable Astronomer
8 - Airtable Astronomer

My apologies then for restating the obvious.

I’m less familiar with Automation than I am with scripting and extensions. I know it is possible to do what you are trying to do in a script. And it is possible (in Pro or higher subscriptions) to trigger a script from an automation.

I can pull some sample code for how to do it in a script a bit later if that’s helpful to you!

Lif_Alcon
4 - Data Explorer
4 - Data Explorer

That would be greatly welcome and appreciated, if you do! Thank you in advance!

Lif_Alcon
4 - Data Explorer
4 - Data Explorer

For what it’s worth, whether it is accomplished through a script, an automation, some other shortcut, or a genuine miracle, ANY solution towards the end goal will be warmly welcomed!

Seems like the automation does work…

Create a new field of type Multiple Select. I’ll call it “Sum of Multis”

Trigger: When record updated
Action: Update record

image

image

So now, whenever you update either Field1 or Field2, after a moment the automation will run and update the 'Sum of Multis" column to contain all the values.

One bug I haven’t had time to iron out is that when Field1 or Field2 are blank, you get a blank item selected in the “Sum of Multis” column. This can be avoided using conditional actions:
image

I should note that in my very brief testing, it seems like Airtable does automatically deduplicate the values:

image