This is the one weakness in this software, that I had to code around.
The system stores the answers in the AriQuiz answers table, and when the SAVE button is pressed, it calculates and saves the score for that question only.
If the NEXT button is pressed, it stores the selection, but does NOT calculate and save the score for that question.
Pressing NEXT is important, it is where you are not sure your answer is correct, but you guess anyhow, and then plan to revisit non saved questions at the end of the exam if you have time.
I had to write code that is triggered (on exam completion), that looks through all the values, and recalculates the scores and adds them, for every non SAVED result that has a value.
It was tricky but do-able.
I would much prefer it if the authors modified the system to add a new database field, with a score for all non SAVED buttons, and then, at exam completion add the sum of the NEXT and the SAVE results, IF this is selected in a new admin - 'include NON SAVED scores in total...' setting.
That way the system hardly changes..
1. One new db field,
2. one new Admin setting,
3. run the calculation for each question, but put it in the SAVED or the NEXT score field
4. Sum everything as before, or include the NEXT score column if admin switch selected.
That would fix all my issues in one go