Multiselect Dropdown menu

Hi, we are Not able to store data from multiselect into table. Is it possible to use multiselect or do I have to create a workaround?

Hey @Magne good question!

The recommended solution here is to get comfortable with converting lists to strings. It’s quite simple once you get the hang of it. There is a trigger under Arrays → Join to String that will concatenate a list into a text chain separated by a delimiter. I like to use the | character but you can use whatever you like. You can then store this text into a table record.

If you ever need to unpack that string, there is another trigger called “Split String” which will allow you to convert that string back into a list element based on the same delimiter.

1 Like