Can someone take a look at my code please and tell me what I'm doing wrong.
I have 5 questions with radio buttons. Questions are on separate pages. When user clicks next it takes them to the next question. On the page after the quiz there is a text label that shows score out of 5. For some reason the quiz allows the user to score over 5. I have a previous button for the user to click in case they need to go back and change an answer. Not sure what I'm missing to make this work. Any suggestions would be appreciated.
App OnStart =
Reset(radQ1);
Reset(radQ2);
Reset(radQ3);
Reset(radQ4);
Reset(radQ5);
Reset(txtInputQ5)
Next button OnSelect = If(radQ1.Selected.Value=“Answer blah blah",Set(Score,1),Set(Score,0))
Next button OnSelect = If(radQ2.Selected.Value="Answer blah blah",Set(Score,Score +1))
Next button OnSelect = If(radQ3.Selected.Value="Answer blah blah",Set(Score,Score+1))
Next button OnSelect = If(radQ4.Selected.Value=“Answer blah blah“Set(Score,Score+1))
Next button OnSelect = If(radQ5.Selected.Value="Answer blah blah",Set(Score,Score +1))
Text label text = "You answered " &Score&" out of 5 questions correctly."