I have trouble with getting a Value from a Cell in my Spreadsheet. I found the getCell()-method in the documentation but it does not work. It always just gets \"Range\" inst
getCell() returns a Range object.. you need to add the .getValue() method to get the value of the cell in the range.
https://developers.google.com/apps-script/reference/spreadsheet/range#getValue()