🚧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