Im putting together a pretty lengthy spreadsheet in google spreadsheets. This spreadsheet contains information about products ie name, brand, part number, ect... I was helped previously and given some nice solutions but I am still running into limitations.
What I am trying to do is generate, automatically, a description field based on information in other cells.
The formula I am using in the descriptions column is ="Brand Name"&" "&A3&" "&B3&" "&(joinVals(E3:G3," x "))&" "&K3
joinVals(E3:G3," x ")
is joining together separate columns containing Length(E) Width(F) Height(G) and adding 'x' between the values. That results in E x F x G
This Script does work for the above formula
function joinVals( rangeValues, separator ) {
function notBlank(element) {return element != '';}
return rangeValues[0].filter(notBlank).join(separator);
}
However I keep getting this error
Script invoked too many times per second for this Google user account.
I am wondering If I can do this as an array to avoid the error as this doc contains 1000+ ROWS.
When all is said and done my result I would like to achieve should be something like this "Brand Name" Part Number(A) Product Name(B) Dimensions(E x F x G) Size(K)
Should I be running an ARRAY Script?
Thank you all so much, this forum has been such a help!