It’s Kit Review Season at Midwest Devo and we want adult and kid feedback.
Before we go through the hard work of exploring other vendors, we first want to know whether things are working or not for the majority of people.
We ultimately want to know whether the kits are fitting, the materials are holding up as well as they should, and whether we should keep working with our current company or explore alternative options. This survey is the first step in that process.
If you have feedback that doesn’t seem to fit in the survey, send us an email with your input.
Select who you are to get the right set of questions
Thanks for your feedback!
Your honest input helps us evaluate our current kit and decide what is best for the whole team.
Export to Google Sheets
Paste your Google Apps Script Web App URL below. Each submission will automatically post a row to your sheet.
Show Google Apps Script setup code
In Google Sheets → Extensions → Apps Script → paste this → Deploy as web app (access: Anyone) → copy the URL above.
function doPost(e) {
var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
var data = JSON.parse(e.postData.contents);
var keys = Object.keys(data);
if (sheet.getLastRow() === 0) sheet.appendRow(keys);
sheet.appendRow(keys.map(function(k) {
return data[k] !== undefined ? data[k] : "";
}));
return ContentService.createTextOutput("ok");
}