为什么这个谷歌应用程序脚本需要永远运行?什么减慢了它?

时间:2017-06-04 17:42:20

标签: google-apps-script

为什么这段代码会永远运行?什么减慢了它?

function Refresh(e){
     var e=SpreadsheetApp.getActiveSpreadsheet();
     var formulaSheet = e.getSheetByName("John");
     var formulaCell = formulaSheet.getRange(2,5);
     formulaCell.setValue(formulaCell.getFormula().replace("USD","USE"));
     formulaCell.setValue(formulaCell.getFormula().replace("USE","USD"));

}

1 个答案:

答案 0 :(得分:0)

我的浏览器出了点问题,我清除了缓存,现在它更快了