How would I put the actual responses selected in a Check-Each question into another question?
Q1. Where do you usually go for medical care? A. Primary Care Doctor B. Clinic C. Emergency Room Q2. Which of these places (list those chosen in last question) do you use most for medical care? 1. Primary Care Doctor 2. Clinic 3. Emergency Room A: You can create an Automatic Variable to display these. After the Check-Each Data Element: 1) insert an Automatic Variable named, for example Q1S; 2) select String Expression from the Type of Data to be Stored drop-down box; and 3) enter the following expression into the Numeric Calculation/String Expression box: CONCAT(if(Q1A=1,if(Q1>1, “Primary Care Doctor,”, “Primary Care Doctor”),””),CONCAT (if(Q1B=1,if(Q1C=1,”Clinic, “,”Clinic”),””),if(Q1C=1,”Emergency Room”,””))) The If function used in our example evaluates a logical expression and assigns one value if the expression is TRUE, another if the expression is FALSE, and another if MAYBE (optional), with the following syntax: IF (Expr, Num1, Num2, Num3) Num1 if Expr is TRUE, Num2 if FALSE, Nu