Currently I have a cell containing an array, eg A1 has [1,2,3]. I managed to get the value from the cell and tried to turn it into an array but it’s not working. Is it possible?
arrValue = cellValue // cell that was pass to the function, eg [1,2,3]
arr = Array(arrValue)
Logger.log(arr[0]) // prints [1,2,3]