Hello, I am trying to build my first app at work for a simple app. I am trying to add up scores (Scrollable quiz). I have the following on the "view Score button", but I'm not sure how to:
1. Have them add together when clicking on "View Score" (and navigating to jump to "View Score Screen").
2. Then have it write back the score to the SharePoint list
(I created the radio button options and creating the quiz using the share Point list to create a form and converting to radio boxes - which worked really well.) I have watched about 3 hours of different video and got this far, but can't seem to move beyond this and I'm soooo close to the end! Please help!
My View Score button currently has
/*Assigning Trip Score to radio button for calculations
*Q1*/
If(Radio01.Selected.Value = "Yes", Set(Score,10), Set(Score, 0));
If(Radio01.Selected.Value = "Partly", Set(Score,5), Set(Score, 0));
If(Radio01.Selected.Value = "No", Set(Score,0), Set(Score, 0));
/*Q2*/
If(Radio02.Selected.Value = "Day", Set(Score,0), Set(Score, 0));
If(Radio02.Selected.Value = "Partly", Set(Score,5), Set(Score, 0));
If(Radio02.Selected.Value = "Dark", Set(Score,20), Set(Score, 0));
/*Q3*/
If(Radio03.Selected.Value = "<4", Set(Score,100), Set(Score, 0));
If(Radio03.Selected.Value = "5 to 7", Set(Score,50), Set(Score, 0));
If(Radio03.Selected.Value = ">8", Set(Score,0), Set(Score, 0));
And my sharepoint list to write the values back looks like this - I have a total of 11 questions
