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