Google Apps脚本表onClick事件将X放入单元格

时间:2013-10-26 14:08:10

标签: google-apps-script google-sheets

我发现在Google表格中创建复选框的方法并不是很好。当单击单元格时,是否有一种方法可以将X或复选标记的脚本放置在单元格中?我希望该脚本适用于第5列中的所有单元格。

2 个答案:

答案 0 :(得分:0)

没有。您可以使用菜单将X放在所选单元格上,而不是单击单击格式。

答案 1 :(得分:-2)

有没有办法在单击时自动填充单元格?当编辑左边的单元格时,我使用以下脚本自动填充时间。

function onEdit(e) {
  var s = e.source.getActiveSheet(), r, colCell, nextCell;
  if(s.getName() === 'SignInOut') { //checks that we're on the correct sheet
    r = e.range; //s.getActiveCell();
    colCell = r.getColumn();
    if(colCell === 3 || colCell === 5) { //checks the column
      nextCell = r.offset(0, 1);
      if(nextCell.getValue() === '') //is empty?
        nextCell.setValue(new Date());
    }
  }
}