So, in total there are 729 different ways to display.
From
TTC1, TTP1, TTB1, TCC1, TCP1, TCB1
TTC1, TTP1, TTB1, TCC1, TCP1, TCB2
TTC1, TTP1, TTB1, TCC1, TCP1, TCB3
TTC1, TTP1, TTB1, TCC1, TCP2, TCB1
...
to
TTC3, TTP3, TTB3, TCC3, TCP3, TCB2
TTC3, TTP3, TTB3, TCC3, TCP3, TCB3
with
TT: Travel Time
TC: Travel Cost
C: Car
P: Public transport
B: Bike
1: first factor
2: second factor
3: third factor
Did you create a model with your analyzing tool?
Or do you just want to display randomly?
In case of "randomly" I should say:
- Create a "container", a question of type "huge text". Lets call it "QPool"
Here you store all 729 options (maybe like this):
#001:075100100075070070
#002:075100100075070085
...
#729:125130145125100100
where the first is the representation of this first option
and the second of this
- Create 6 random numbers from 1-729 (I understood you want to show this question sex times)
To be sure you get different numbers, use the javascript solution and leftpad the number to a length of 3
- Grab the line that refers to the first random number with string functions "strpos()" and "substr()".
You see you get the entire line with (QLine)
{substr(QPool,strpos(QPool,'#'+randnum_1+':')+5,18)}
- Enter the respective factors into your question, again with function "substr()"
{substr(QLine,0,3)}
{substr(QLine,3,3)}
...
Well, it's a rough idea, which will work, but it depends on your idea of the conjoint model.
Also, I have no idea why the radio button for the choices does not appear
You use a question of type "long text". How do you expect radio buttons?
Should be a question of type "array".
Joffm