Help

Re: Mapping to Multi-Select Fields with Integromat

Solved
Jump to Solution
4236 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Alexander_Stump
5 - Automation Enthusiast
5 - Automation Enthusiast

I have a scenario where i lookup a list of values for an item in a google sheet and want to add them as complementary values in one multiselect field for the item in airtable. in the shown example these are 12 category values coming from gsheet, which should all be added in a multiselect field for the user in airtable.

2021-04-19 08_54_13-Window

The lookup in google sheets and the JSON creation and parsing work as expected - I get a JSON with the categories like the one in the screenshot below:

2021-04-19 09_00_42-Window

The update in airtable works as well - as long as I have the JSON list elements mapped individually as single entries for the multiselect field, like indicated here:

2021-04-19 09_07_44-Window

The problem with this approach is, that if my Gsheet Lookup and resulting JSON send less list elements to airtable than I have specified in the integromat flow, the extra fields will be sent as “null” and this causes an error in the Scenario.

This is exactly the same problem as described in this post 10 months ago: Mapping Multi-Select Fields with Integromat

Within that post @cor proposed the solution to make sure that “Smart Links” is checked on the “Create a record” Module and to map the array (ex: Channel: ) rather than mapping the individual array elements. This would be a great solution for me as well:)

If i now map the array instead of the individual elements -
2021-04-19 09_15_37-Window

then the integromat flow works well and iterates in the flow thru all 12 elements from the JSON -

2021-04-19 09_19_11-Window

but the 12 elements are not added as complementary multiselect values in the airtable, but each of the 12 flow iterations overwrites the value in the multiselect field - so that at the end only one value (instead of the intended 12 in the example) is stored in airtable:

2021-04-19 09_20_46-Window

I tested this extensively, but am stuck now - any ideas what I am missing here?

THX FOR YOUR HELP!

12 Replies 12

No worries, thx for your help Scott!

I did initially start with the array aggregator before writing this post. The Array was build correctly, smart Links was enabled, and the array is added via mapping to the multiselect field in airtable:

2021-04-22 09_40_48-Window

…but this runs into an error within the airtable update step:

2021-04-22 09_33_42-Window

→ Error Message: “Collection can’t be converted to text for parameter ‘Value’.”

→ After this I initially switched to test the JSON modules instead of the array aggregator, yet this resulted in the “overwrite” problem that I have started this post with… :grimacing:

I’m sure it’s something very easy that you’re missing. Just write Integromat support, and post back here with their answer!

Alexander_Stump
5 - Automation Enthusiast
5 - Automation Enthusiast

solution after checkin w integromat support: use the map() function in integromat to write back to airtable

2021-04-23 16_39_58-Window

The map function contains the array, plus the raw id of the array element that I want to map

2021-04-23 16_41_52-Window

in my case this is “4”.

Now the multiselect field gets updated with the dynamic results from sheet as intended, really glad now;)

thx again for your support!