6

谷歌电子表格中数组公式的最佳实践问题

假设我在 A 列中有一列值。在 B 列中,我乘以 10。我可以对整个范围使用数组公式,或者在 B 列中创建第一个单独的公式并粘贴下来。

我的问题是哪个更好用?数组计算速度更快吗?从速度的角度来看有什么好处吗?我有很大的电子表格,我想知道这是否会有所作为。

4

2 回答 2

4

我真的无法为这个答案提供任何参考,它是基于轶事证据和与其他 Google 表格用户的讨论。

对于一个相对简单的计算,比如你的问题,我相信数组解决方案对于非常大的数据集具有更好的性能。它还减轻了在表格中遇到公式限制的可能性(40,000,但由数组公式填充的 CONTINUE 函数不计入此计数)。

但是,对于非常复杂的计算,这两个选项确实能够使电子表格停止运行。臭名昭著的例子是数组公式,我们需要求助于字符串操作(例如,将数组连接在一起,然后再次将它们分开)。在这种情况下,我个人会去 plan C,并编写一个 Google Apps Script 自定义函数,它将一个数组(arrays)作为参数(arguments),使用纯 Javascript 来操作数据,并输出一个数组。

于 2013-07-04T01:07:44.763 回答
3

您可以使用两个脚本对此进行测试

将 30,000 行乘以每个单元格为 10 乘以 10

自动扩展需要 ~ .275 s CopyDown ~ .678 s

https://docs.google.com/spreadsheets/d/1djHUp_kTS02gYnKf5Y3AvpHCIt_69x_X02eesOSywzw/edit?usp=sharing

 function AutoExpand() {
 var ss    =SpreadsheetApp.getActive();
 var sheet =ss.getSheetByName('AAA');
 var LC    = sheet.getLastColumn();
 var LR    = sheet.getLastRow();

 var start = new Date();
 //Auto-expanding Formulas to be added
 //Two dim array with 1 row
 var formulas = [["=ArrayFormula(A:A*10)"]];

 //Add auto-expanding formulas to Cell(s)
 var cell = sheet.getRange(1,LC+1,1,formulas[0].length);
 cell.setFormulas(formulas);
 SpreadsheetApp.flush();

 //Get range and post back Display Values
 //var r = sheet.getRange(1,LC+1,LR,formulas[0].length);
 //var v = r.getDisplayValues();
 //r.setValues(v);

 var end = new Date();
 var executiontime = end - start;
 Logger.log(executiontime); 
 }

复制下来

function CoppyDown() {
var ss    =SpreadsheetApp.getActive();
var sheet =ss.getSheetByName('AAA');
var LC    = sheet.getLastColumn();
var LR    = sheet.getLastRow();

var start = new Date();
//NON Auto-expanding Formula(s) to be added
//Two dim array with 1 row
var formulas = [["=A:A*10"]];

//Add NON auto-expanding formula(s) to Cell(s)
var cell = sheet.getRange(1,LC+1,1,formulas[0].length);
cell.setFormulas(formulas);
SpreadsheetApp.flush();

//Get range FULL Range of Cells W/Formulas
var r = sheet.getRange(1,LC+1,LR,formulas[0].length);

//Add formulas to Row1 Cell(s)
var cells = sheet.getRange(1,LC+1,1,formulas[0].length);
cells.setFormulas(formulas);

//Copy formulas down
cells.copyTo(r);
SpreadsheetApp.flush();

//Get the Display Values of the Range W/Formulas
//var v = r.getDisplayValues();

//Clear the Formulas Before the Postback
//This Super Speeds up the Postback
//r.clear();

//Postback Formulas as Values
//r.setValues(v);

var end = new Date();
var executiontime = end - start;
Logger.log(executiontime); 
}
于 2020-01-18T19:15:25.073 回答