Does anyone know how to transfer a value from a mu...
# suitescript
g
Does anyone know how to transfer a value from a multiselect field to another? In SS2.0..
r
Have you tried getValues and setValues
g
Hi @rustyshackles, I could make ir by doing this: var jsonFile=JSON.parse(JSON.stringify(record)); var employees=jsonFile.fields.multiselectfield1; otherrecord.setValue('multiselectfield2',employees);