๐Ÿšงapp.cellValueAt()

GAS โŸฉ app โŸฉ .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

Was this helpful?