I have a quiz that is divided into sections. Each section has 4 questions. Each question has a response and associated value.
I would like to calculate the average for each section. Each question is set up in a drop down answer list with 5 options as a response where the customer has to select one response. Each response has a value/score associated with it. The number field gets me really close to what I am looking to do:
({Question One:1:value} + {Question Two:2:value} + {Question Three:3:value} + {Question Four:4:value}) / 4
The problem is that the value is not the value the customer entered as their response for each question. It is the value listed in the string above.
What do I need to do to make the scoring work based on the customer's selected answer?