My study contains 10 blocks of questions.
The respondents should either conduct block 1-5 or block 6-10.
So i've tried my best and created a parent list called "BlockList" with 10 predefined list members. (1,2,3,4... and so on).
Afterwards i created a constructed list based on BlockList with the following code:
Begin Unverified Perl
my$RandNum=SYSRAND(1,2);
if($RandNum==1)
{
ADD("BlockList",1,2,3,4,5);
}
else
{
ADD("BlockList",6,7,8,9,10);
}
End Unverified