按时复制值触发脚本?

时间:2017-10-12 07:20:38

标签: google-apps-script google-sheets

我正在努力寻找一种方法让这个脚本在执行后自动进入一行。我尝试使用getlastrow,收效甚微。 我觉得我在这里遗漏了一些非常基本的东西。任何帮助将不胜感激。

App.js

2 个答案:

答案 0 :(得分:0)

您可以在功能结束时执行以下操作:

var sh=SpreadsheetApp.getActive().getSheets()[0];
var rg=sh.getRange(sh.getLastRow()+1,1).activate();

答案 1 :(得分:0)

试试这段代码。

    var sh=SpreadsheetApp.getActive().getSheets()[0];
    sh.getRange("A1").setValue("");
//getLastRow returns undefined if the sheet is blank.
    var rg=sh.getRange(sh.getLastRow()+1,1).activate();