I have a problem statement where i have created a questionnaire app with 7 questions . All are MCQs and type of ENumlist and Enum . There are 5 question (enumlist) where user can select multiple options and based on the selection weightage of 1 point will be given . If he/she selects all the 4 options then 4 points will be given . For rest of the 2 question (enum) type single selection is implemented for user input . for 3 options 3,2,1 points are assigned . Based on the selection points will be accumulated by the user.
After submitting the form based on the final sum different result page will be shown to the user .
If sum > 20 show level 1 , Sum 11-20 show level 2 , sum <10 show level 3 . I am not able to find the logic how to provide expressions for MCQ questions which will count based on the user input .Please help
Multiple choice questions . As you can see in the attached screenshot each answers has some weightage .
The enumlist answer choices has weightage 1 where user can multi select and max point for the question is 5 .
The enum answer choices has different weightage . User can select only one value here (single select) . Based on the answer choice 3,2,1 points will be given to the user .
At the end all the input values will be added and based on the SUM different result sets will be seen .
Hi @1minManager@Steve Need one more help . How can i build an expression for enum list type with every options having different weightage .? You have given the perfect solution for enum type with different weightage(3,2,1 for different answers) and enum list type with same weightage (1 point for each option). But please help me creating an expression for the below data . Enum list in which user can select multiple options and all the weightage gets added in case of more then one selection