Help

Create record from the Multiselect Lookup

Solved
Jump to Solution
906 2
cancel
Showing results for 
Search instead for 
Did you mean: 

Previously I’m using multiselect field from the current table. However, I am trying to automate by pulling the multiselect field from the LOOKUP. But when I want to run the script, I am unable to do so.

image

Here is the structure of the base

image

My current script

let templateName = r.getCellValue(s.tempField.name);
console.log(templateName)

let monthName = r.getCellValue(s.monthField.name);


templateName.forEach(item => console.log(`${monthName}; ${item.name}`));

let combinedArray = templateName.map(item => `${monthName}; ${item.name}`);

console.log(combinedArray);
output.table(combinedArray);

How to modify this script? Thanks!

1 Solution

Accepted Solutions
Alexey_Gusev
12 - Earth
12 - Earth

Hi,
try to add .join().split(',')
right after getCellValue(fname)
i’m not sure it’s correct for all types of lookup, but it should work in your case

note that if your values contain comma, you should define another divider, also providing join() with it

See Solution in Thread

2 Replies 2
Alexey_Gusev
12 - Earth
12 - Earth

Hi,
try to add .join().split(',')
right after getCellValue(fname)
i’m not sure it’s correct for all types of lookup, but it should work in your case

note that if your values contain comma, you should define another divider, also providing join() with it

You’re a lifesaver! Thanks a lot mate!