We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Hi,
I want to insert multiple values into one colum based on its header.
For example :
var myValues = [1, 2, 3, 4]; var thisColumn = sheet.getColumn('idCol'); thisColumn.value = myValues?
and the result will be something like this idCol 1 2 3 4
Thanks for your help.