Per questa domanda, ho creato una funzione di script di Google Apps, che calcola la somma cumulativa di un intervallo. Martin Hawksey su Google+ ha commentato un modo più efficiente di calcolare la somma cumulativa:
function cumulativeSum(array){
var output = [];
for (i in array){
if(i==0) {
if (array[i].length > 1) throw ("Only single column of data");
output.push([array[i][0]]);
} else {
output.push([output[i-1][0] + array[i][0]]);
}
}
return output;
}
La mia domanda è: questo può essere raggiunto con l'uso di formule?