0 votes
ago in SoSci Survey (English) by s296958 (125 points)

I am aware of the option "Shuffle/rotate randomly" but it's not what I'm looking for.

Say I have 5 response options. What I want to do is to randomly show participants either of two specific sequences, namely either 1-2-3-4-5, or 5-4-3-2-1. I don't want 2-3-4-1-5, or 4-3-2-1-5, etc.. Is there a way to do this?

Thank you in advance!

1 Answer

0 votes
ago by SoSci Survey (324k points)
selected ago by s296958
 
Best answer

Please create a random generator (e.g. RG01) with codes, and use this PHP code to display the question (e.g. AB01).

if (value('RG01') == 1) {
    question('AB01', [1,2,3,4,5]);
} else {
    question('AB01', [5,4,3,2,1]);
}

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

...