I have a table with students' answers to 20 math problems like this:
A | B | C | D | E |... ------------+-----+-----+-----+-----+... problem no | 1 | 2 | 3 | 4 |... ------------+-----+-----+-----+-----+... right answer| 3 | 2 | A | 15 |... ------------+-----+-----+-----+-----+... student1 | 3 | 4 | A | 12 |... student2 | 2 | 2 | C | 15 |... student3 | 3 | 2 | A | 13 |...
Now a need a column that counts the 'right' answers for each student.
I can do it this so:
=(IF(D$3=D5;1;0))+(IF(E$3=E5;1;0))+(IF(F$3=F5;1;0))+......but it's not the nicest way :)