Who can suggest an example of sending data to the cells of rows B and C
function doGet(e) { var sheet = SpreadsheetApp.openById("1P-erO-6HE6XzZVNu0VrnQJ0jW4tAOZX-lpKUF_bru6U"); var n = sheet.getRange("Z1").getValue() + 2; var d = new Date(); sheet.getRange("A" + n).setValue(d); sheet.getRange("B" + n).setValue(e.parameter.p1); sheet.getRange("C" + n).setValue(e.parameter.p2); sheet.getRange("Z1").setValue(n - 1); } How to make an entry in the string, which is specified via Get? That is, if I want to write to the G and H strings, what should I specify in the request and how to change the code?