CopyDown Add-On

Years ago, as a STEM teacher, I had my students build basswood bridges.  We’d then test them by hanging weights from them.  I’d submit the results to a Google Form, which would kick it to a Google Spreadsheet, where a formula was all set up to calculate the “Engineering Efficiency” (a measure that leveled the playing field between heavy, strong bridges and light, strong bridges).  Unfortunately, formulas don’t automatically apply to the new rows created by new Form Submissions. I had to have a student manually drag the formula down each time a new result was submitted.

Enter the CopyDown Add-On

I later discovered this wonderful little add-on.  It automatically pulls that formula down to a each new form submission.  No manual dragging necessary.  This is super, super useful when your Form & Sheet are part of a bigger system that triggers other actions in other add-ons (i.e., autoCrat, formMule) that require those formulas.

Here’s a GIF of how it works, followed by a step-by-step guide to using it:

CopyDown Add-On Animation

  1. Set up your Google Form.
  2. Open up the connected Spreadsheet.
  3. Start with an initial form submission.  You’ll need this in the next step.
  4. Create your formulas in Row 2 (the row with your first submission).
  5. Click Add-Ons and follow the steps to add CopyDown.
  6. Click Add-Ons > CopyDown > CopyDown Settings.
  7. Flip the switch to “On.”
  8. Generally, I select to paste the results “as values” (otherwise it puts the formula itself into each cell which, if it’s a lengthy spreadsheet, will ultimately slow it down).
  9. Save Settings.
  10. Start gathering form submissions!

FILTER Formula in Google Sheets

You can filter using menu buttons and create filter buttons in Google Sheets, but sometimes it’s valuable to setup a FILTER formula.  One such instance is shown in the GIF below: when you have a Sheet that contains data about many students across many grades or classes.  Using a filter formula, you can create a tab for each class or grade.  You can also create tabs for certain criteria (like lower scores that require follow-up).

=FILTER(range, condition1, [condition2, …])

Note from the formula above, that you can actually identify multiple criteria (such as Mr. Kotter’s students who scored below a 75%).

Filter Formula (Google Sheets) Animation