🚧app.cellValueAt()

GASapp ⟩ .cellValueAt()

⬆️ 需要: app (app.sheetByName)

// 🔸 app.cellValueAt(sheetName, row, col)
app.cellValueAt = function(sheetName, row, col) {
  return app.sheetByName(sheetName)
    .getRange(row, col)
    .getValue();
};

Last updated