Professional > Interview scripting > Writing interview scripts > Sorting categorical response lists > Sorting response lists containing subheadings > Sorting subsections and the responses in the subsections
 
Sorting subsections and the responses in the subsections
Place the appropriate ordering keywords at the ends of the subsections and also at the end of the response list as a whole. For example, if the question is defined as:
Perception3 "What things would you mention about the Internet
    if you were describing it to a friend?" categorical [1..]
{
Favorable "Good things"
{
EasytoUse "Easy to use",
LotsOfInfo "Access to a lot of information",
PeopleLikeMe "Can chat to people with same interests",
BuyOnline "Good way to buy goods/services"
} ran,
Unfavorable "Bad things"
{
NotReliable "Not a secure way to make purchases",
BadExperience "I had a bad experience in the past",
NotPrivate "Need to guard personal information",
Difficult "It's difficult to find appropriate web sites"
} ran
} rot;
the interviewing program will display favorable comments before unfavorable ones for one interview and then display unfavorable comments before favorable ones for the next interview. In addition, the responses within each section will be sorted in an identical random order.
Interview page showing sorted responses within sorted subsections
You can specify the same sorting in the routing section using:
Perception3.Categories["Favorable"].Order=OrderConstants.oRandomize
Perception3.Categories["Unfavorable"].Order=OrderConstants.oRandomize
Perception3.Categories.Order=OrderConstants.oRotate
See also
Sorting response lists containing subheadings