I am using setDataAtCell(row, column, value, source) to update the value in the cell for a column.
As i am having 1000 rows that i am copying from an excel, I am passing Array for the row parameter as below.
“setDataAtCell(rowArray, column, value, source)”,
Question:
Is there a option to pass value also as an Array as below?
setDataAtCell(rowArray, column, valueArray, source).