Hello, I’m trying to send a Javascript array with multiple values to my Airtable (multi-select field).
Array example:
var colors = [ "#4BC2A4-a", "#4BC2A4-b", "#4BC2A4-c", "#4BC2A4-d", "#4BC2A4-e", "#4BC2A4-f", "#4BC2A4-g", "#4BC2A4-h", "#f4a261-j", "#f4a261-10-k", "#EF616C-11-l", "#EF616C-m", "#EF616C-n", "#EF616C-o", "#f4a261-p", "#f4a261-q", "#f4a261-r", "#f4a261-s", "#EF616C-t", "#EF616C-u", "#EF616C-v", "#EF616C-w", "#f4a261-x" ];
But Airtable creates only one unique item with all the values inside:
![7b88f6b902d38e7ed089d3d12dcc492f78052039.png 7b88f6b902d38e7ed089d3d12dcc492f78052039.png](/t5/image/serverpage/image-id/23242i63122398E70E3C46/image-size/large?v=v2&px=999)
How it should be:
![6637aef7193879be92dc8b2d2dd82d507795c560.png 6637aef7193879be92dc8b2d2dd82d507795c560.png](/t5/image/serverpage/image-id/23245i87102499C3096892/image-size/large?v=v2&px=999)
How I should format the array to make sure Airtable will separate the items by comma ?
Thanks.