Get the value for a single cell. ```javascript const SSID = '<spreadsheet-id>'; const SHEETNAME = 'data'; var ss = SpreadsheetApp.openById(SSID); var ws = ss.getSheetByName(SHEETNAME); var value = ws.getRange("A1").getValue(); ```