代码之家  ›  专栏  ›  技术社区  ›  rylaughlin

故障记录公式

  •  1
  • rylaughlin  · 技术社区  · 7 年前

    function setFormulas() {
      var ss = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("English Form Responses");
      Logger.log(ss.getRange(2, 1, ss.getLastRow(), 16).getValues());
    }
    
    1 回复  |  直到 6 年前
        1
  •  0
  •   Cameron Roberts    7 年前

    范围。getValues();函数不返回公式,只返回值。使用范围。getFormulas();获取/记录范围内的公式。

    https://developers.google.com/apps-script/reference/spreadsheet/range#getFormulas()