Hi, gsoto,
to select randomly 2 out of 8 questions (with the follow up) you can do the following:
There are 28 ways to select 2 out of 8 (8 over 2).
1-2, 1-3, 1-4, 1-5 ,1-6 ,1-7, 1-8, 2-3, 2-4, 2-5, 2-6, 2-7, 2-8, 3-4, 3-5, 3-6, 3-7, 3-8, 4-5, 4-6, 4-7, 4-8, 5-6, 5-7, 5-8, 6-7, 6-8, 7-8
So you could create a random number (1-28) and display by relevance.
Like:
Q2, relevance equation: (randnbr==1) or (randnbr==
or (randnbr==9) or (randnbr==10) or (randnbr==11) or (randnbr==12) or (randnbr==13)
...
Q5, relevance equation: (randnbr==4) or (randnbr==10) or (randnbr==15) or (randnbr==19) or (randnbr==23) or (randnbr==24) or (randnbr==25)
...
The follow-ups analogue.
Well, that will do it.
But, if you want to display randomly Q2->Q5 or Q5->Q2, I have no idea
Regards
Joffm