๐ง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?