You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Hi, I've created a Google Form that has checkbox options that are identical to the one of the Jira ticket's custom field, and using Apps Script to integrate with Jira. The checked values would be saved to a Google Sheet, with ", " separating them. So I've tried
var arrayofval = last_row_values[6].split(", ");
"customfield_id": arrayofval,
However, it's giving me an error:
The <field name> value must be an object
If I use
var arrayofval = last_row_values[6];
there would be an error of
Specify the value for<field name> in an array
Does anyone know how to solve this?