Help us create the community experience you deserve. Share your preferences and shape the future of Greyhawk Landing living.
Your responses have been recorded. Together, we're shaping the future of Greyhawk Landing living.
Automatically send new poll submissions to a Google Sheet. Paste your Google Apps Script Web App URL below.
function doPost(e) { var data = JSON.parse(e.postData.contents || '{}'); var ss = SpreadsheetApp.getActiveSpreadsheet(); var tab = (data.poll_name || 'Unsorted').substring(0,99); var sh = ss.getSheetByName(tab) || ss.insertSheet(tab); var headers = Object.keys(data); if (sh.getLastRow() === 0) sh.appendRow(headers); var row = headers.map(function(k){return Array.isArray(data[k]) ? data[k].join('; ') : data[k];}); sh.appendRow(row); return ContentService.createTextOutput('OK');}