Hi,
what do you want to achieve?
All participants have to check all these boxes to continue.
Do you want to let them continue only after they checked all options?
Of course you can write a validation equation like "Checklist_01=='Y' AND Checklist_02=='Y' AND ..."
and a nice validation tip like "You have to select all options to continue"
Or use the function "count":
count(self)==number of items
www.limesurvey.org/manual/ExpressionScri...mplemented_functions
Or do you want to screen out the persons who do not without any further message?
Here you use a quota.
Create a question of type equation "eqQuota" like {if(count(that.Checklist)==number of items,1,0)}
Then you may create a quota and screen out the person with eqQuota==0.
Joffm