The Community will be undergoing maintenance on Friday January 10 at 2:00pm - Saturday January 11 at 2:00pm EST, and will be "read-only." For assistance during this time, please visit our Help Center.
I’m trying to build a script that updates a multiple select field from one option “option1 / option2 / option3” into multiple options after I map through the string to make each word an individual option.
Add this to your script to make separate the combined select value
let initial = something \\ should be a string that follows the format "option1 / option2 / option3"
let separated = initial.split(" / ").map(option => (return {name: option}))
Then you can update the record like normal using the separated value for the multiple select field.