Hi, Chiara,
if you have some knowledge in php and access to your server, you can do an ajax call.
Create a question of type "short text" (let's call it "rq") where you start your ajax call and store the result.
A small php program queries the LimeSurvey database to find all questions with less than 60 answers
and returns a string with 10 randomly selected questions like
,4,23,67,134,49,17,121,143,87,45,
In LimeSurvey you put all 153 questions into one group with the same randomization group name.
Then you can set the relevance equation of each question to
question 1: strpos(rq,",1,")!==false // meaning: If the string ",1," was found in "rq", display the question
...
question 87: strpos(rq,",87,")!==false
...
question 153: strpos(rq,",153,")!==false
Joffm
At the moment I am on vacation; so I don't have time to create an example. Maybe later.
Volunteers are not paid.
Not because they are worthless, but because they are priceless
The topic has been locked.