Help with Randomizing and Displaying One Choice from Multiple Subsets in Qualtrics Rank Order Question | XM Community
Skip to main content
Question

Help with Randomizing and Displaying One Choice from Multiple Subsets in Qualtrics Rank Order Question

  • September 26, 2024
  • 3 replies
  • 75 views

Forum|alt.badge.img

Hey everyone,  

I’m working on a Rank Order question in Qualtrics and need help achieving a specific design using JavaScript. Here’s what I want to do:

Problem:

I have three different categories of choices:

  1. A (A1, A2, ...)
  2. B (B1, B2, ….)
  3. C (C1, C2 ...)

Each category has 4 choices. What I need to do is randomly select and display one option from each category (so 3 total), shuffle the order in which they appear, and hide the rest. I also need to ensure the Rank Order drag-and-drop functionality still works after the randomization.

With the code, the survey preview displays the random choices but the drag and drop functions is not available anymore after running the code. I couldn't find any fix for this problem. Can anyone help me? 

What I’ve Tried:

I’ve written a JavaScript code to randomly pick one choice from each category and hide the rest, but I’m facing issues with reinitializing the Rank Order functionality. 

 

Qualtrics.SurveyEngine.addOnload(function() {

    // Define the blocks with their choices
    var groupAChoices = [
        "A1", "A2", "A3", "A4"
    ];

    var groupBChoices = [
        "B1", "B2", "B3", "B4"
    ];

    var groupCChoices = [
        "C1", "C2", "C3", "C4"
    ];

    // Randomly pick one option from each group
    var groupAPick = groupAChoices[Math.floor(Math.random() * groupAChoices.length)];
    var groupBPick = groupBChoices[Math.floor(Math.random() * groupBChoices.length)];
    var groupCPick = groupCChoices[Math.floor(Math.random() * groupCChoices.length)];

    // Combine the selected choices into an array
    var selectedChoices = [groupAPick, groupBPick, groupCPick];

    // Randomize the order of the selected choices
    for (let i = selectedChoices.length - 1; i > 0; i--) {
        let j = Math.floor(Math.random() * (i + 1));
        [selectedChoices[i], selectedChoices[j]] = [selectedChoices[j], selectedChoices[i]];
    }

    // Display the randomized choices
    this.getChoiceContainer().innerHTML = "<ul>" + selectedChoices.map(choice => "<li>" + choice + "</li>").join('') + "</ul>";
});

 

3 replies

Forum|alt.badge.img+1
  • Level 1 ●
  • 8 replies
  • October 2, 2024

Hi Anna, did you solve the problem now? I also encounter the same problem, I would appreciate it  a lot if you can provide some suggestions.


vgayraud
QPN Level 5 ●●●●●
Forum|alt.badge.img+49
  • QPN Level 5 ●●●●●
  • 377 replies
  • October 2, 2024

Hi,

I’d probably avoid any javascript and go with randomizer and piped in EDs. Something like this :

 


TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • 5934 replies
  • October 2, 2024

@AnnaKP,

You can use survey flow randomizers to set embedded data flags for the choices in each category (e.g., set A1, A2, A3, or A4 to 1) Then use display logic on the choices in your rank order question (e.g., display A1 if A1=1) and randomize it.

The issue with @vgayraud’s piping solution is you’ll have the unwind the data, whereas with this approach the data is clean.


Leave a Reply