Scoring and URL redirect | XM Community
Skip to main content
Question

Scoring and URL redirect

  • 25 July 2024
  • 4 replies
  • 23 views

Hello!

I have a part of my study that is a test that I want to be able to show participants what they scored at the END of the study. I figured out how to do that quite easily but I also want to be able to redirect the participants back to a URL after the study. Is there any way to show them their scoring (including what they got right and wrong) and then get them redirected (say when they click to another screen)? I can’t find a way to use both simultaneously. 

Any help is much appreciated! 

Thanks.

4 replies

Userlevel 5
Badge +17

Hi @meganddoyle. Can you please let me know how you set up the scoring? 

Badge +1

Hi @chackbusch I set it up using scoring options and set it to show score at the end of survey. 

 

Userlevel 5
Badge +17

@meganddoyle In your end of survey message you could add some script part on top: 

<script> 
Qualtrics.SurveyEngine.addOnload(function() {
setTimeout(function() {
window.parent.location = "https://www.qualtrics.com/"
}, 10000);
});
</script>

This would redirect them to the Qualtrics website after 10 seconds. Increate/decrease the 10000 based on your requirement. It’s the delay in milliseconds.

Userlevel 3
Badge +5

Create an embedded data for each question and display them in the end of survey message. Add the next survey link to next button in any of the question.

Leave a Reply