编写一个脚本,以便单元格中包含特定文本

时间:2016-11-17 20:50:13

标签: javascript google-apps-script google-sheets

如何编写脚本以便Google电子表格单元格中包含特定文本?

我知道如何在VB中使用:

Range("A4").Value = "Amt. Refunded" 

但不适用于Google Spreadsheets JavaScript。

1 个答案:

答案 0 :(得分:0)

看看这个:Google Apps Script Range

var ss = SpreadsheetApp.getActiveSpreadsheet();
ss.getRange("A4").setValue("Amt_Refunded");