对于这个问题,我创建了一个Google Apps脚本函数,该函数计算范围的累计和。Google+上的马丁·霍克西(Martin Hawksey)评论了一种更有效的累计金额计算方法:
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;
}
我的问题是:这可以通过公式的使用来实现吗?
抱歉很晚才回答,我只是看到他插在右边的“相关”中。
—
AdamL 2013年