References changing in Google Sheets with new forms submissions

后端 未结 1 578
野趣味
野趣味 2021-01-23 08:44

I have a Google sheet that feeds from a Google form and then I use the sheet to make views to show data and graphics on Google sites. I noticed that suddenly the graphics said \

相关标签:
1条回答
  • 2021-01-23 09:32

    to truly lock down the range you need to use INDIRECT:

    ={"Person"; 
     ARRAYFORMULA(IF(LEN(INDIRECT("A2:A")), INDIRECT("Responses!AL2:AL")&"" &
     INDIRECT("Responses!AK2:AK")&
     " " & INDIRECT("Responses!AJ2:AJ")&
     " " & INDIRECT("Responses!AI2:AI"), ))}
    

    =COUNTIF(INDIRECT("Responses!AY2:AY"), "si")
    

    =COUNTIFS(INDIRECT("Responses!AA2:AA"), "Sí",
              INDIRECT("Responses!AD2:AD"), "<>Rod",
              INDIRECT("Responses!AD2:AD"), "<>Ato",
              INDIRECT("Responses!AD2:AD"), "<>Ref",
              INDIRECT("Responses!AD2:AD"), "<>Cua")
    
    0 讨论(0)
提交回复
热议问题