0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Google formのアンケートがspreadsheetでずれる対策

Posted at

Google Formは手軽にアンケートを作れてとても便利です
それをSpreadsheetに出力すると、集計も出来てとても便利!

SpreadSheetでデータがずれること

こんなアンケートを作って…
image.png

こんなふうにデータが集計されて…

image.png

色々するために別シートにデータをコピーして…
image.png

2件ほどアンケートが増えたら…

image.png

…あれ?なにか変だぞ?
ここは、='フォームの回答1':B5 でないとおかしいはず…
なぜこんな事になってるんだ…?

理由

このフォームでは、データが挿入の形で追加されます
なので、アンケートが増えてもその下の空欄のセルを参照するように調整され、
アンケートが増えたらそのデータをコピーというのはこの方法では出来ません

対策

今回はindex関数を使う方法を書きます

2行目でB2を参照する場合は「=index(B:B, row(), 1)」とします
なお、冒頭では、B1のセルでフォームの回答:B2を参照しているため、index(B:B, row()+1, 1))と
行の値を調整する必要があります

sum(B2:D2)のような関数は、「=index(B:D, row(), 0)」と0を入れることで範囲が指定できます

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?