I'm trying to fetch the data out of a cell in a range, but i get an error saying the cell i'm trying to read is out of range
after opening the document the code goes
var range = sheet.getRange("A1:B7");
var cell = range.getCell(2, 3);
var cellValue = cell.getValue();
Logger.log(cell);
and my sheet looks like this:
What is the error here?