Hi, I have limited excel knowledge and I am not sure how to tackle this task. I have a survey that is for mentors and mentees wanting to participate in a mentoring program. I want to compare the responses from the mentees against the responses from the mentors to see how compatible the two people are and I want to put this in a matrix.
As an example, below is dummy data of what the survey would look like:
[TABLE="width: 384"]
<colgroup><col width="64" span="6" style="width:48pt"> </colgroup><tbody>[TR]
[TD="width: 64"]Person[/TD]
[TD="width: 64"]What[/TD]
[TD="width: 64"]Q1[/TD]
[TD="width: 64"]Q2[/TD]
[TD="width: 64"]Q3[/TD]
[TD="width: 64"]Q4[/TD]
[/TR]
[TR]
[TD]Sam[/TD]
[TD]mentee[/TD]
[TD]happy[/TD]
[TD]sad[/TD]
[TD]blue[/TD]
[TD]green[/TD]
[/TR]
[TR]
[TD]Luke[/TD]
[TD]Mentee[/TD]
[TD]happy[/TD]
[TD]angry[/TD]
[TD]pink[/TD]
[TD]green[/TD]
[/TR]
[TR]
[TD]Tom[/TD]
[TD]Mentee[/TD]
[TD]happy[/TD]
[TD]mellow[/TD]
[TD]green[/TD]
[TD]red[/TD]
[/TR]
[TR]
[TD]****[/TD]
[TD]Mentor[/TD]
[TD]angry[/TD]
[TD]sad[/TD]
[TD]purple[/TD]
[TD]pink[/TD]
[/TR]
[TR]
[TD]Harry[/TD]
[TD]Mentor[/TD]
[TD]happy[/TD]
[TD]mellow[/TD]
[TD]red[/TD]
[TD]red[/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD]Mentor[/TD]
[TD]angry[/TD]
[TD]angry[/TD]
[TD]red[/TD]
[TD]green[/TD]
[/TR]
</tbody>[/TABLE]
In the matrix i need to produce, I need to compare the survey results from the mentor against the mentee, if they answer questions the same way then they get a score - I then need to total that score over the entire survey. I would like a score of 10 if Question 1 matches, 10 if question 2 matches, 30 if question 3 matches and 20 if question 4 matches. So using the example above the matrix would need to look like this:
[TABLE="width: 256"]
<colgroup><col width="64" span="4" style="width:48pt"> </colgroup><tbody>[TR]
[TD="width: 64"][/TD]
[TD="width: 64"]****[/TD]
[TD="width: 64"]Harry[/TD]
[TD="width: 64"]John[/TD]
[/TR]
[TR]
[TD]Sam[/TD]
[TD="align: right"]10[/TD]
[TD="align: right"]10[/TD]
[TD="align: right"]10[/TD]
[/TR]
[TR]
[TD]Luke[/TD]
[TD="align: right"]0[/TD]
[TD="align: right"]10[/TD]
[TD="align: right"]20[/TD]
[/TR]
[TR]
[TD]Tom[/TD]
[TD="align: right"]0[/TD]
[TD="align: right"]30[/TD]
[TD="align: right"]0[/TD]
[/TR]
</tbody>[/TABLE]
Anyone have any idea how I could create this matrix using formulas? I will need to be able to look up names in the survey, then compare the results from a particular question based on the names, then return a number if the cells match, then add that all together in a final score. Open to any suggestions on how to handle this situation. Thank you
As an example, below is dummy data of what the survey would look like:
[TABLE="width: 384"]
<colgroup><col width="64" span="6" style="width:48pt"> </colgroup><tbody>[TR]
[TD="width: 64"]Person[/TD]
[TD="width: 64"]What[/TD]
[TD="width: 64"]Q1[/TD]
[TD="width: 64"]Q2[/TD]
[TD="width: 64"]Q3[/TD]
[TD="width: 64"]Q4[/TD]
[/TR]
[TR]
[TD]Sam[/TD]
[TD]mentee[/TD]
[TD]happy[/TD]
[TD]sad[/TD]
[TD]blue[/TD]
[TD]green[/TD]
[/TR]
[TR]
[TD]Luke[/TD]
[TD]Mentee[/TD]
[TD]happy[/TD]
[TD]angry[/TD]
[TD]pink[/TD]
[TD]green[/TD]
[/TR]
[TR]
[TD]Tom[/TD]
[TD]Mentee[/TD]
[TD]happy[/TD]
[TD]mellow[/TD]
[TD]green[/TD]
[TD]red[/TD]
[/TR]
[TR]
[TD]****[/TD]
[TD]Mentor[/TD]
[TD]angry[/TD]
[TD]sad[/TD]
[TD]purple[/TD]
[TD]pink[/TD]
[/TR]
[TR]
[TD]Harry[/TD]
[TD]Mentor[/TD]
[TD]happy[/TD]
[TD]mellow[/TD]
[TD]red[/TD]
[TD]red[/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD]Mentor[/TD]
[TD]angry[/TD]
[TD]angry[/TD]
[TD]red[/TD]
[TD]green[/TD]
[/TR]
</tbody>[/TABLE]
In the matrix i need to produce, I need to compare the survey results from the mentor against the mentee, if they answer questions the same way then they get a score - I then need to total that score over the entire survey. I would like a score of 10 if Question 1 matches, 10 if question 2 matches, 30 if question 3 matches and 20 if question 4 matches. So using the example above the matrix would need to look like this:
[TABLE="width: 256"]
<colgroup><col width="64" span="4" style="width:48pt"> </colgroup><tbody>[TR]
[TD="width: 64"][/TD]
[TD="width: 64"]****[/TD]
[TD="width: 64"]Harry[/TD]
[TD="width: 64"]John[/TD]
[/TR]
[TR]
[TD]Sam[/TD]
[TD="align: right"]10[/TD]
[TD="align: right"]10[/TD]
[TD="align: right"]10[/TD]
[/TR]
[TR]
[TD]Luke[/TD]
[TD="align: right"]0[/TD]
[TD="align: right"]10[/TD]
[TD="align: right"]20[/TD]
[/TR]
[TR]
[TD]Tom[/TD]
[TD="align: right"]0[/TD]
[TD="align: right"]30[/TD]
[TD="align: right"]0[/TD]
[/TR]
</tbody>[/TABLE]
Anyone have any idea how I could create this matrix using formulas? I will need to be able to look up names in the survey, then compare the results from a particular question based on the names, then return a number if the cells match, then add that all together in a final score. Open to any suggestions on how to handle this situation. Thank you