Hello I am making a questionnaire for my thesis and I have make a randomizer that will give each participant different conditions but same set of questions. However, I want to set a quota/limit on the amount each conditions appear. After, it reach the amount that condition will not appear again. How do I do it? Thank you
Okay, that's easy. Simply use a random generator witht he default settings.
And then use the code from Display Individual Codes or Coucher Codes with a "stop" condition after the random generator has been empties 60-times (not 1 time like in the manual).
if (value('RG01_CP') > 60) { setStatus('quota full'); }
Use a panel redirect element (to be found with the questions) do decide what text to display when the quota is full. As an option, you can also use this PHP code without the panel redirect element:
if (value('RG01_CP') > 60) { text('AB01'); buttonHide(); pageStop(); }
Willkommen im Online-Support von SoSci Survey.
Hier bekommen Sie schnelle und fundierte Antworten von anderen Projektleitern und direkt von SoSci Survey.
→ Eine Frage stellen
Welcome to the SoSci Survey online support.
Simply ask a question to quickly get answers from other professionals, and directly from SoSci Survey.
→ Ask a Question