查找并替换Google电子表格脚本

时间:2014-07-17 21:12:24

标签: google-apps-script google-sheets

真的很快我试图在列中找到一个空单元格并替换它为今天的日期。

我不知道为什么不工作。它能是什么?这是代码。

function ConfirmacionGarantia() {
  var ss = SpreadsheetApp.getActiveSheet();


  //Seteamos la fecha

  var d = new Date();

  var month = d.getMonth()+1;
  var day = d.getDate();

  var output = d.getFullYear() + '/' +
    (month<10 ? '0' : '') + month + '/' +
      (day<10 ? '0' : '') + day;


  for(var i=3; i<ss.getLastRow();i++)
      {
  if(ss.getRange(i,23) == null )
    {
        ss.getRange(i,23).setValue(output) 
    }
}  

SpreadsheetApp.flush();
}

非常感谢。

1 个答案:

答案 0 :(得分:1)

刚才意识到我并没有真正地回答&#39;此

您需要的信息在这里: https://developers.google.com/apps-script/reference/spreadsheet/range?hl=ja#getValue()