
Hi,
I want to ask a couple of screening questions before users are taken to a booking form.
If they answer no to all, the page should redirect to the booking form, otherwise they should be presented a message.
What would be the best/easiest way to do this?
Thank you for your time,
Ollie
Couple of ways to do this. I like to use a variable. Set(Var_questionscore,0) on load of app
then for each question they answer no to (and if you were for example using a toggle) you could do If(!togglle1.Value, Set(Var_questionscore, Var_questionscore+1)
then when you get to the last question you can evaluate the question score, and if the question score = the number of questions, navigate to the booking screen.
@Oliver_McErlane if this answers your question, please mark it as a solution.