我试图弄清楚如何在 Google 电子表格脚本中检索具有特定名称的列的索引。
我正在开发一个自定义的 Google 脚本,它会在编辑电子表格时自动将时间戳添加到电子表格中。当前版本成功地将时间戳添加到活动单元格行的最后一列。
我想创建这个脚本的新版本,通过使用特定的列名将时间戳添加到特别指定的列。例如,我想在我的电子表格中创建一个名为“上次更新”的列,并且我希望脚本检测该列的索引并自动将时间戳添加到该列,而不是行中的最后一列。
这对我来说会更好,因为我可以将时间戳列放在我想要的任何位置,而不必担心脚本会意外覆盖任何重要的内容。
我当前的脚本如下所示:
function onEdit(event)
{
var timezone = "GMT-4";
var timestamp_format = "yyyy-MM-dd HH:mm:ss";
var sheet = event.source.getActiveSheet();
// note: actRng = the cell being updated
var actRng = event.source.getActiveRange();
var index = actRng.getRowIndex();
var cindex = actRng.getColumnIndex();
// Here is where I want to use a named column's index instead of the active row's last column.
var dateCol = sheet.getLastColumn();
//var dateCol = sheet.getColumnIndexByName('Last Updated');
var lastCell = sheet.getRange(index,dateCol);
var date = Utilities.formatDate(new Date(), timezone, timestamp_format);
lastCell.setValue(date);
}