Limesurvey version: 6.4.10
Limesurvey hosting
Theme: Bootstrap Vanilla ( vanilla )
Hello,
I want to carry out an experiment in which 8 different question lists must be pseudo-randomly distributed to participants. From what I know, pseudo-randomization using limesurvey is no simple task and maybe even impossible without complex coding procedures. Instead, I want each participant to complete a random list out of those 8 lists. What I have in mind is to create a "selection" questionnaire and provide a single link for my participants, which then randomly generates one of the links for 8 different questionnaires.
To accomplish this task, I understand that I need to create a question and generate a random number between 1-8.
And then, I need to change my endurl to this by using the text elements option:https://example.com/index.php?r=survey/index&sid={if(random == 1, 111111, if(random == 2, 222222, if(random ==3, 333333, if (random==4, 444444, if(random==5, 555555, if(random==6, 666666, if(random==7, 777777, 888888))))))}I have the following questions in this regard:
1) What kind of question do I need to create? What code should I use to generate a number between 1-8 and where should I write this code? (Equation part or something?)
2) Should I just enter the link above into the endurl part directly? (Just like we do in providing a single url at the end?)