Not signed in (Sign In)

Vanilla 1.1.5a is a product of Lussumo. More Information: Documentation, Community Support.

  1.  
    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.

    Thank you for your help.
    • CommentAuthordbuschho
    • CommentTimeOct 3rd 2011 edited
     
    Hello Phil,

    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.

    Happy to help further,
    Drew
    FA Support
  2.  
    That is extremely simple.

    Thank you!