有没有更快的方法来刷新我所有的自定义公式?

Is there a faster way to refresh all of my custom formulas?

我需要通过 Google 表格中的脚本刷新所有自定义公式,但这似乎需要很长时间(例如,100 个单元格需要 30 秒)。可能会有数千个单元格使用我的自定义公式,因此我必须想出更好的方法。我有:

function refresher(){
  var sheet = SpreadsheetApp.getActiveSheet();
  var selection = sheet.getDataRange();
  var columns = selection.getNumColumns();
  var rows = selection.getNumRows();
  for (var column=1; column <= columns; column++){
    for (var row=1; row <= rows; row++){
      var cell=selection.getCell(row,column);
      var formula = cell.getFormula();
      if (formula.startsWith("=myfunc(")){
        cell.setFormula(formula.replace("=myfunc(", "?myfunc("));
      }
    }
  }
  SpreadsheetApp.flush();
  for (var column=1; column <= columns; column++){
    for (var row=1; row <= rows; row++){
      var cell=selection.getCell(row,column);
      var formula = cell.getFormula();
      if (formula.startsWith("=?myfunc(")){
        cell.setFormula(formula.replace("=?myfunc(", "=myfunc("));
      }
    }
  }
}

为了达到你的目的,使用TextFinder怎么样?在这种情况下,我认为工艺成本可能会降低。从你的脚本来看,当TextFinder用于你的情况时,它变成如下。

示例脚本:

function refresher() {
  const sheet = SpreadsheetApp.getActiveSheet();
  const formula = "=myfunc";
  const tempFormula = "=sampleFormula";
  sheet.createTextFinder("^\" + formula).matchFormulaText(true).useRegularExpression(true).replaceAllWith(tempFormula);
  sheet.createTextFinder("^\" + tempFormula).matchFormulaText(true).useRegularExpression(true).replaceAllWith(formula);
}

参考: