Google Apps脚本:使用电子表格范围作为参数从菜单调用功能

时间:2014-05-23 07:37:30

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

我有一个函数接受电子表格范围作为参数,然后在给定范围的同一行中添加日期。

function autoDate(cell) {
  var currentDate = new Date();
  var currentMonth = currentDate.getMonth() + 1;
  var currentDateStr = new String();
  currentDateStr = currentDate.getDate() + "/" + currentMonth;
  var sheet = SpreadsheetApp.getActiveSheet();

  if (cell.getValue() == ""){
    var activeRowInt = cell.getRow();
    var dateCell = sheet.getRange(activeRowInt,3); //3 is my date column
    dateCell.setValue(currentDateStr);
  }
}

我有一个菜单,我运行一个单独的函数,以活动单元格作为参数调用autoDate()(因为菜单系统不允许使用参数调用函数)

function autoDateMenu(){
  var sheet = SpreadsheetApp.getActiveSheet();
  var activeCell = sheet.getActiveCell();
  autoDate(activeCell);
}

如果我在脚本编辑器中运行autoDateMenu(),它可以正常工作。 如果我通过从电子表格的菜单中选择autoDateMenu()来运行它,我会收到以下错误:

  

TypeError:无法调用未定义的方法“getValue”。 (第64行,档案   “代码”)

第64行指的是这一行:

if (cell.getValue() == ""){

这是我为菜单编写的代码:

function onOpen() {
  var spreadsheet = SpreadsheetApp.getActiveSpreadsheet();
  var entries = [{
    name : "Read Data",
    functionName : "readRows"
  },{
    name : "Set Date",
    functionName : "autoDateMenu"
  }];
  spreadsheet.addMenu("Script Center", entries);
}

感谢您的回复:)

1 个答案:

答案 0 :(得分:1)

为什么不这样做呢?我认为你在解决这个问题时会遇到问题。

菜单:

function onOpen() {
  var spreadsheet = SpreadsheetApp.getActiveSpreadsheet();
  var entries = [{
    name : "Read Data",
    functionName : "readRows"
  },{
    name : "Set Date",
    functionName : "autoDate"
  }];
  spreadsheet.addMenu("Script Center", entries);
}

AutoDate功能:

function autoDate() {
  var sheet = SpreadsheetApp.getActiveSheet();
  var activeCell = sheet.getActiveCell();
  var currentDate = new Date();
  var currentMonth = currentDate.getMonth() + 1;
  var currentDateStr = new String();
  currentDateStr = currentDate.getDate() + "/" + currentMonth;

  if (activeCell.getValue() == ""){
    var activeRowInt = cell.getRow();
    var dateCell = sheet.getRange(activeRowInt,3); //3 is my date column
    dateCell.setValue(currentDateStr);
  }
}

删除中间人AutoDateMenu功能。

如果这不适用于您的目的,我们可以尝试别的。