Hi, Maria,
here
[url]
www.limesurvey.org/manual/ExpressionScri...#Access_to_variables
[/url]
you find all propperties to access variables.
There is ".gseq" that returns
the sequential number of the group, starting from 0
At the end of your survey you can create a question of type equation where you use the function "list()" to store these sequential numbers
{list(randfreqsexual.gseq,randfreqhumil.gseq,randfreqmonitor.gseq,randfreqthreats.gseq)}
You will get something like 3,5,2,4
meaning:
Story1 was on fourth place
Story2 was on sixth place
Story3 was on third place
Story4 was on fifth place
Remember:
In first and second place there are "About you" and "randgender"
The counting starts at 0.
To improve you could subtract the sequence number of the group before in the list-function to start your list with 1.
Joffm