Hi @Gavin_Brooks - not sure about recreating the Excel method, but this is how I would do it:
- Have a table with a single row containing the correct answers:
- Then have another table which contains each student and their answers. Link each row to the answers table:
Then have a series of columns for each question:
“Q1 Answer” is a lookup from the model answer table. Score Q1 is a formula which compares the student’s answer to the model answer:
IF(Q1 = {Q1 Answer}, 1, 0)
At the end, you have a “total score” field which adds the “Score QX” field.
There is a bit of set-up to do, but once it is done it will give you the score just by making the link to the answer table. For usability you can hide the QX Answer and Score QX fields to give you this:
JB