range.cellValue()
// 🔸 app.range.cellValue(range, row, col)
// ⭐ (row, col) is relative to `range`
app.range.cellValue = function(range, row, col) {
return range.getCell(row, col).getValue();
};range.getCell(row, column)
Last updated
Was this helpful?