Answered

Can you bring user back to a specific question after submitting

  • 29 June 2022
  • 2 replies
  • 191 views

Hi! I want to be able to bring a user back to the beginning of questions on a quiz typeform after submitting. The first several prompts are just user information intake, so I’d like to skip those. The general idea is that if someone does not get a perfect score on the quiz, they can click try again, and instead of going to the title page, it brings them back to midway where the actual quiz questions begin. Any help would be much appreciated if this is possible!

 

icon

Best answer by john.desborough 29 June 2022, 17:07

View original

2 replies

Userlevel 7
Badge +6

@fleischer.r - you could create a hidden variable that is passed back to the form from the ending page that would be used as logic to get the person to the start of the questions. something like

  • create hidden variable called result in the form
  • assume that there are two endings - perfect score and imperfect score 
    • users end up on one or the other based on the result you calculate
    • on the ending for imperfect score have a button that will route the user back to the quiz with the url to the form BUT with the hidden field added ie #result=@result (where you pull in the value of the variable you will set in a minute)
  • at the end of your quiz when you establish that they are perfect score or imperfect and will route them to an ending on the click of submit button, you add a logic rule that sets the result variable to the appropriate value
    • if score is perfect then replace result with perfect
    • if score is not perfect then replace result with imperfect
    • (the link you set on the ending for imperfect score will now pick up the variable value and add it to the link)
  • in the logic and branching area, you set up the branching to start with evaluating the hidden field 
    • if result = imperfect jumpto Qn - where n is the starting of the questions you want them to answer again 
      • otherwise jumpto the first question - if there is no hidden variable result =imperfect then they are not looking to take questions again (assumption)

does that help??

 

des

Userlevel 7
Badge +5

Hi @fleischer.r Were you able to give the suggestions above a try? Let us know how it went!

Reply