这是一个用公式填充列的函数:
function fillAccount(lastRow) {
var spreadsheet = SpreadsheetApp.getActive();
spreadsheet.getRange('B1').activate();
spreadsheet.getCurrentCell().setValue(' ');
spreadsheet.getRange('B2').activate()
.setFormula('=ifna(vlookup(C2,Accounts!$A$1:$A$7,1,false),B1)');
spreadsheet.getRange('B3').activate();
var currentCell = spreadsheet.getCurrentCell();
spreadsheet.getRange('B3:B' + lastRow).activate();
spreadsheet.getRange('B2').copyTo(spreadsheet.getActiveRange(),
SpreadsheetApp.CopyPasteType.PASTE_FORMULA, false);
}
从此功能完成开始,到B列中的所有行都填充有计算结果后,会有一些延迟。
我想在此函数之后执行另一个函数,但是该函数需要先填充所有行,然后才能执行。
这是它在驱动程序脚本中的显示方式:
...
fillAccount(lastrow);
copyAllData(); // this needs to have all rows in column B fully
// populated.
...
答案 0 :(得分:0)
首先,您的函数需要一些清理(可以进一步完善,但这只是一个开始):
function fillAccount(lastRow) {
var spreadsheet = getSpread(); //custom method calling the Spreadsheet, change to your logic;
var colB = spreadsheet.getRange('B1:B'+lastRow);
var row1 = colB.getCell(1,1);
var row2 = colB.getCell(2,1);
row1.setValue(' ');
row2.setFormula('=ifna(vlookup(C2,RENAMED!$A$1:$A$7,1,false),B1)');
row2.copyTo(colB.offset(1,0,lastRow-1), SpreadsheetApp.CopyPasteType.PASTE_FORMULA, false);
SpreadsheetApp.flush(); //make sure changes are applied;
}
然后,只需调用第二个函数并确保您访问值以确保计算(如果等待时间很长(例如,每个公式calc大于1s),则某些公式可能会以#ERROR!
值结尾-如果您想解决这个问题,请添加支票==='#ERROR!'
,该支票在遇到该值时终止第二个功能并递归地重新启动它):
/**
* Caller function;
*/
function triggerFill() {
//...your logic and lastRow initialization here;
fillAccount(lastRow);
copyAllData();
}
/**
* Function accessing updated values;
*/
function copyAllData() {
var spreadsheet = getSpread(); //custom method calling the Spreadsheet, change to your logic;
var dataRange = spreadsheet.getDataRange(); //just an example that gets all data;
var values = dataRange.getValues(); //just an example that gets all values;
for(var i=0; i<values.length; i++) {
if(values[i].indexOf('#ERROR!')!==-1) { //for high latency;
Utilities.sleep(t) //change t to number of ms to wait to your liking;
return copyAllData();
}
}
//do other stuff, like cell copy;
}