Please help us help you and fill where relevant:
Your LimeSurvey version:
Version 5.3.30+220808
==================
Let's say I have a list of sports eg. Swimming, cycling and running (my list is actually a lot longer)
For each of these sports I want to ask a series of questions:
1. Have you ever done <sport>?
2. When did you last do it?
3. Are you planning to do it this weekend?
Rather than going through and taking the time to make all of the questions for every sport (including all the logic) is it possible to do them all at once?
Eg in python I would do this:
sports = [...]
questions = list()
def make_questions_for_sport(sport):
return <question>
for sport in sports:
questions.append(make_question_for_sport(sport))