Professional > Interview scripting > Writing interview scripts > Questions and responses > Questions with categorical responses > Single-choice responses in a multiple-choice list
 
Single-choice responses in a multiple-choice list
If you want to force respondents to answer all applicable questions in an interview, and you have multiple-choice questions where they are asked to choose responses from a list, you may want to include a response such as “None of these” that respondents can use when they are unable to select any of the predefined responses. For example, if you ask respondents to choose the brand that they normally use from a list of brands, and the normal brand is not one of those listed, respondents may choose “None of these” to continue with the interview.
In order that respondents cannot select this response with any other responses in the list, you will need to flag it as a single-choice response by using the exclusive keyword as follows:
Qname "Text" categorical [num_resps] {
  multiple-choice_responses,
  single-choice_response exclusive
};
For example:
RestaurantType "When you go out for a meal, what types
of restaurant do you normally visit?" categorical [1..]
{
Indian, Chinese,
Oriental "Other Oriental",
Italian, French,
European "Other European",
RestaurantTypeNone "None of these" exclusive
};
The interviewing program displays exclusive responses in a bold font as a signal that they may not be chosen with other responses.
Exclusive responses can appear anywhere in a response list, and a response list can contain more than one such response. This often happens when a response list contains the special responses for No Answer, Don't Know, or Refused (see Special responses for details). Also, if the response list is sorted in some way, it is common for exclusive responses to be flagged as fixed so that they always appear at the same point (usually the end) in the list (see Responses with fixed positions in the response list for details).
Note An alternative to a “None of these” response is an Other Specify response. This allows the respondent to type a text response that can be coded later on. For more information, see Other Specify.
See also
Questions with categorical responses