Maybe you guys have an idea, thanks in advance community!
I'm current getting the Error:
Text result of JOIN is longer than the limit of 50000 characters
within Google Sheets when using this formula
=TRANSPOSE(SPLIT(JOIN(",";B1:B7);","))
I thought I could create a workaround in Google AppScript but my code is not working properly on the front end.
Current code:
function masterJoin(value) {
//var delim = ","
//var value = [["employee1","employee2"],["employee3"]]
//delim = delim || '';
var result = [];
for (var i = 0; i < value.length; i++){
//result.push(value[i]);
//Logger.log(result);
var temp = value[i]
for (var t = 0; t < temp.length; t++){
//Logger.log(temp[t])
result.push(temp[t])
}
}
return result
}