Hi all,
I try do make a small app for our sports club. We want to check in the people when they come for training. I am looking for a solution to send data to a specific cell in a google spreadsheet. But I don't get it.
Hi TIMAI2,
thank you for your idea. I think I tried that block earlier and it also didn't work. I will try again later. May be the problem is on site of Google. I tried to use the manual in this community for activating and deploying the script. But it looked different.
function doPost(e) {
var ss = SpreadsheetApp.openById('<SheetID here>');
var sh = ss.getSheetByName('Sheet1');
var params = e.parameter;
var row = parseInt(params.row);
var col = parseInt(params.col);
var val = params.value;
sh.getRange(row,col).setValue(val);
return ContentService.createTextOutput("value set");
}