Does anyone know how to transfer a value from a multiselect field to another? In SS2.0..
r
rustyshackles
11/13/2018, 7:17 PM
Have you tried getValues and setValues
g
Gustavo Doná
11/14/2018, 4:51 PM
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);