I have created a questionnaire that consists of around 100 questions. These items are separated into 6 domains where. For the sake of easier understanding, let's just call them Domain 1 - 6.
I have them typed in one specific table called "Correspondence", with format like below:
[TABLE="class: grid, width: 300"]
<tbody>[TR]
[TD]Question No.
[/TD]
[TD]Domain
[/TD]
[/TR]
[TR]
[TD]1
[/TD]
[TD]A
[/TD]
[/TR]
[TR]
[TD]2
[/TD]
[TD]C
[/TD]
[/TR]
[TR]
[TD]3
[/TD]
[TD]A
[/TD]
[/TR]
[TR]
[TD]4
[/TD]
[TD]B
[/TD]
[/TR]
[TR]
[TD]5
[/TD]
[TD]A
[/TD]
[/TR]
[TR]
[TD]6
[/TD]
[TD]C
[/TD]
[/TR]
</tbody>[/TABLE]
I used Google Form to generate a spreadsheet of RAW data of respondents, where it will help me mark the RAW Scores, for each item on a separate column:
(An example)
[TABLE="class: grid, width: 600"]
<tbody>[TR]
[TD]Submission ID
[/TD]
[TD]Question 1
[/TD]
[TD]Question 2
[/TD]
[TD]Question 3
[/TD]
[TD]Question 4
[/TD]
[TD]Question 5
[/TD]
[TD]Question 6
[/TD]
[/TR]
[TR]
[TD]Participant 1
[/TD]
[TD]2
[/TD]
[TD]3
[/TD]
[TD]5
[/TD]
[TD]1
[/TD]
[TD]2
[/TD]
[TD]4
[/TD]
[/TR]
[TR]
[TD]Participant 2
[/TD]
[TD]5
[/TD]
[TD]4
[/TD]
[TD]5
[/TD]
[TD]3
[/TD]
[TD]5
[/TD]
[TD]1
[/TD]
[/TR]
[TR]
[TD]Participant 3
[/TD]
[TD]1
[/TD]
[TD]1
[/TD]
[TD]1
[/TD]
[TD]2
[/TD]
[TD]2
[/TD]
[TD]2
[/TD]
[/TR]
</tbody>[/TABLE]
The next thing I need to do is generate another table that sums up the Domain totals for each participant. So from the example above, I need to sum 1,3,5 as Domain A, 4 as Domain B and 2 & 6 as Domain C:
(An example)
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]Domain A
[/TD]
[TD]Domain B
[/TD]
[TD]Domain C
[/TD]
[/TR]
[TR]
[TD]Total score for Participant 1
[/TD]
[TD]9
[/TD]
[TD]1
[/TD]
[TD]7
[/TD]
[/TR]
</tbody>[/TABLE]
The hardest thing is to find a proper method to kick start this process. Can anyone point me in the right direction? Either formulas or VBAs would be fine too. Thanks!
I have them typed in one specific table called "Correspondence", with format like below:
[TABLE="class: grid, width: 300"]
<tbody>[TR]
[TD]Question No.
[/TD]
[TD]Domain
[/TD]
[/TR]
[TR]
[TD]1
[/TD]
[TD]A
[/TD]
[/TR]
[TR]
[TD]2
[/TD]
[TD]C
[/TD]
[/TR]
[TR]
[TD]3
[/TD]
[TD]A
[/TD]
[/TR]
[TR]
[TD]4
[/TD]
[TD]B
[/TD]
[/TR]
[TR]
[TD]5
[/TD]
[TD]A
[/TD]
[/TR]
[TR]
[TD]6
[/TD]
[TD]C
[/TD]
[/TR]
</tbody>[/TABLE]
I used Google Form to generate a spreadsheet of RAW data of respondents, where it will help me mark the RAW Scores, for each item on a separate column:
(An example)
[TABLE="class: grid, width: 600"]
<tbody>[TR]
[TD]Submission ID
[/TD]
[TD]Question 1
[/TD]
[TD]Question 2
[/TD]
[TD]Question 3
[/TD]
[TD]Question 4
[/TD]
[TD]Question 5
[/TD]
[TD]Question 6
[/TD]
[/TR]
[TR]
[TD]Participant 1
[/TD]
[TD]2
[/TD]
[TD]3
[/TD]
[TD]5
[/TD]
[TD]1
[/TD]
[TD]2
[/TD]
[TD]4
[/TD]
[/TR]
[TR]
[TD]Participant 2
[/TD]
[TD]5
[/TD]
[TD]4
[/TD]
[TD]5
[/TD]
[TD]3
[/TD]
[TD]5
[/TD]
[TD]1
[/TD]
[/TR]
[TR]
[TD]Participant 3
[/TD]
[TD]1
[/TD]
[TD]1
[/TD]
[TD]1
[/TD]
[TD]2
[/TD]
[TD]2
[/TD]
[TD]2
[/TD]
[/TR]
</tbody>[/TABLE]
The next thing I need to do is generate another table that sums up the Domain totals for each participant. So from the example above, I need to sum 1,3,5 as Domain A, 4 as Domain B and 2 & 6 as Domain C:
(An example)
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]Domain A
[/TD]
[TD]Domain B
[/TD]
[TD]Domain C
[/TD]
[/TR]
[TR]
[TD]Total score for Participant 1
[/TD]
[TD]9
[/TD]
[TD]1
[/TD]
[TD]7
[/TD]
[/TR]
</tbody>[/TABLE]
The hardest thing is to find a proper method to kick start this process. Can anyone point me in the right direction? Either formulas or VBAs would be fine too. Thanks!