I have three single multi=valued fields as follows:
Vehicle: car
bike
boat
train
Max Speed:120
40
65
85
Use Mode of Transportation :yes
no
maybe
when I have time
and I need to generate the following
User Options: car-120-yes
bike-40-no
boat-65-maybe
train-85-when I have time
I have tried using a for-each value with the Vehicle as the value
and I have tokes tracking both Max Speed and Use Mode of Transportation
But I can not print the index values correctly.
Any help would be appreciated.