๐งapp.cellValueAt()
// ๐ธ app.cellValueAt(sheetName, row, col)
app.cellValueAt = function(sheetName, row, col) {
return app.sheetByName(sheetName)
.getRange(row, col)
.getValue();
};Last updated
// ๐ธ app.cellValueAt(sheetName, row, col)
app.cellValueAt = function(sheetName, row, col) {
return app.sheetByName(sheetName)
.getRange(row, col)
.getValue();
};Last updated