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