We have a spreadsheet that has formulas to calculate a couple of things based on a Google Form. When someone submits something via the Google Form, it inserts a new row into the Form Responses sheet. We created formulas that will look at that sheet, some data gets copied 1:1, some gets calculated, some uses the SWITCH function. However, the formulas keep moving when a new row gets inserted. 'Form Response'!B3 becomes 'Form Response'B4 for example, and increments even more when new Forms are submitted.
How do we make it, so the formulas don't break?
You may try either of these 2 options:
={'Form responses 1'!A:Z}
. This
essentially mirrors the repsonses tab now='Form responses 1'!A10
; Now it has to be =indirect("'Form responses 1'!A10")