Hi, Jin,
My question in the survey is a Textfield
I assume the question type is "numerical input".
And let's assume the code of the question is "Q1".
Then your relevance equations might be:
Q1.NAOK ge 20 AND Q1.NAOK le 25 -> 20-25
Q1.NAOK ge 26 AND Q1.NAOK le 35 -> 26-35
...
And to generate age groups you may create a hidden question (list(radio)) with the age groups ("Qagegroup")
1: younger than 20
2: 20-25
3: 26-35
4: 36-45
5: 46-55
6: 56 +
In a following (hidden) equation you set this question according to the numerical input.
{Qagegroup=if(Q1 lt 20,1,if(Q1 le 25,2,if(Q1 le 36,3,if(Q1 le 46,4,if(Q1 le 56,5,6)))))}
You should provide a sample survey as lss export with only these questions.
To be honest I am not sure if I understood everything.
Joffm