Copy link to clipboard
Copied
I was wondering if there is a way for the user to get a certain grade based on their quiz results for SPSS in the score board result via a caption.For example A (80-100), B (70-80), C (61-69) and so forth.
Define a user variable v_grade. Insert it in a text container on the score slide.
Create a conditional advanced action, to be triggered On Enter for the Score Slide. It will have several decisions
Decision AGrade
IF cpInfoPercentage is greater or equal to 80
Assign v_grade with A
Decision BGrade
IF cpInfoPercentage is greater or equal to 70 AND
cpInfoPercentage is less than 80
Assign v_grade with B
Decision CGrade
IF cpInfoPercentage is greater or equal to 60 AND
c
...Copy link to clipboard
Copied
You can use an advanced conditional action and a variable to store the
grade. Is it meant to show the grade?
Copy link to clipboard
Copied
Yes. I was thinking of having a text caption to display the grades in the score slide, and i would like for the grade in the text caption to change based on cpInfoPercentage of user. Is this possible ?
Copy link to clipboard
Copied
Define a user variable v_grade. Insert it in a text container on the score slide.
Create a conditional advanced action, to be triggered On Enter for the Score Slide. It will have several decisions
Decision AGrade
IF cpInfoPercentage is greater or equal to 80
Assign v_grade with A
Decision BGrade
IF cpInfoPercentage is greater or equal to 70 AND
cpInfoPercentage is less than 80
Assign v_grade with B
Decision CGrade
IF cpInfoPercentage is greater or equal to 60 AND
cpInfoPercentage is less than 70
Assign v_grade with C
.....