I have run a survey using Google Forms. I downloaded the response dataset as a spreadsheet, but unfortunately when it comes to multiple choice, multiple anwsers responses, the data looks something like this:
Q1 Q2 Q3
1 "A, B ,C" S
2 "C, D" T
1 "A, C, E" U
3 "D" V
2 "B, E" Z
I would like to have it in a form similar to the below:
Q1 Q2 Q2A Q2B Q2C Q2D Q2E Q3
1 "A, B, C" 1 1 1 0 0 S
2 "C, D" 0 0 1 1 0 T
1 "A, C, E" 1 0 1 0 1 U
3 "D" 0 0 0 1 0 V
2 "B, E" 0 1 0 0 1 Z
Is there a clever way to do this? I have several multiple choice, multiple answers questions and more than 250 respondents, so I'd like to be able to do it easily.
Thanks in advance.