We have our application for employment hosted here, and part of the process is completing a short quiz (10 questions).
I have already set up the email responder so we are told if the answers are correct or not, but is there a way to count the number of correct answers to give us a 7/10, 4/10, etc. readout?
Currently it is set up with an IF statement to check if it is correct or not.
This would be mildly challenging to do via the excel style Formula system. A better solution would be to use the calculation system:
1. In your form, mark each question from your quiz as a variable, giving them unique names.
2. When you mark the question as a variable, the values for the difference choices will appear. Set all the wrong choices to 0, and all the right choices to 1.
3. Create a hidden field 'Total' and mark it as a calculated, locked field. The calculation would just be the summing the variables from 2. So something VARONE+VARTWO+VARTHREE ... etc.
4. Include that total field into your email as: Result: ( %%tfa_Total%% / 10 ) or the like.