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();
};
Last updated
Was this helpful?
// ๐ธ 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();
};
Last updated
Was this helpful?