Help

Re: Importing data in a multiselect field without overwriting existing values

Solved
Jump to Solution
1025 0
cancel
Showing results for 
Search instead for 
Did you mean: 
RdMedia_srl
7 - App Architect
7 - App Architect

Hi all, I have a csv file with a column that contains the name of the project associated with the client. So I have a csv file with 2 columns:

customer email, project name.

I have to import this file into the customer table on Airtable where the “merge field” is the email and the project name must be inserted in a multiselect field. The problem is that many customers already have projects in their multiselect field and doing this import is all overwritten and only the last imported project remains.

So the question is how is it possible to import (add) new values in “multiselect field” without overwriting the already existing values?

Thanks so much everyone for the help


Rodolfo - RdMedia
1 Solution

Accepted Solutions
Alexey_Gusev
12 - Earth
12 - Earth

Hi,

add project_name values in a new text field
create another formula field with
ARRAYJOIN( existing_multiselect_field & ‘,’ & new_field, ‘,’)

ignore trailing commas, that may be present if one or both fields are empty
turn formula field into multiselect

See Solution in Thread

3 Replies 3
Alexey_Gusev
12 - Earth
12 - Earth

Hi,

add project_name values in a new text field
create another formula field with
ARRAYJOIN( existing_multiselect_field & ‘,’ & new_field, ‘,’)

ignore trailing commas, that may be present if one or both fields are empty
turn formula field into multiselect

Fantastic! thank you Alexey!


Rodolfo - RdMedia
David_Ayer
6 - Interface Innovator
6 - Interface Innovator

OK but—hear me out–

What if there were an option:

  • Replace field values
  • Add new values

Then you could tick the box for what you want: erase and replace, or append.

This would have the huge added value of solving the "blank cells in the CSV import overwrite data in AT" problem, which remains unsolved.