I have a Google Form that populates a Google Sheet. The way it does that is not particular elegant (not a complaint - gift horse and all that... but it's the reason for this questions!), e.g. if there are three check-boxes in the form, Google dumps the text for each option into the relevant cell. I.e.:
__ "I care about delivery"
__ "I care about logistics"
__ "I care about nothing at all"
If the user selects the first and third check-box, the cell in the spreadsheet now reads:
"I care about delivery, I care about nothing at all"
I created another sheet in the same document, and wrote some basic evaluation rules such as
=if(iserror(FIND("delivery",'Form responses 1'!G5)),"No","Yes")
I populated the entire second sheet with these rules, and it works just as intended - until a new form entry is submitted. Form submission results in Google writing it correctly into the original "Form responses" sheet... but on my new sheet, the corresponding line vanishes.
In the example, if Line 5 was the last line filled in by the form, in the new sheet the next row makes reference to A6, B6 etc. After I submit the new form, the new sheet formulas change from the (populated) A5, B5... to A7, B7... - so the new data is not captured in my nicer representation.
Does anyone understand what is going on here? And, even better, would anyone be able to suggest a fix?