Please help us help you and fill where relevant:
Your LimeSurvey version:
LimeSurvey Community Edition
Version 5.6.7+230222
Own server or LimeSurvey hosting: Own server
Survey theme/template: fruity
==================
Hi everyone,
I generated 5 random numbers 1 to 5 using the following code, to create three different groups.
Code:
{if(is_empty(randExp),rand(1,5),randExp.NAOK)}
If random number 1 and 2, treatment group one. If random number 3 and 4, treatment group two. If random number 5, control group.
Now I would like to show different information for these three groups conditional on the randomised numbers, which also worked out.
After presenting the information,
in the next page, I also want to check if they understand the information correctly. Therefore, I created other questions conditional different groups. And if their answer is wrong, they go to another page to read similar information again.
These steps, I set the conditions on the randomised numbers, it won't work anymore. All the order of the questions and questions between different groups got messed up. The questions in treatment group one also got showed up in treatment group two, and so on.
My colleagues told me that the limesurvey might not save these randomised numbers as fixed value, but they roll the dice every time. That is why it ruined the orders of the questions and the information between groups. I am wondering if we could save these randomised numbers as fixed value somewhere. So it does not ruin the orders of the question and the information between different groups. Or there are other better solutions?
Thank you very much for your kind help in advance.