Hi again Joffm, I apologize, but after making a solid attempt at understanding and implementing your solution, we have yet to correctly duplicate your suggested steps. I have supplied a sample LSS file (in my other reply before this reply). Would you mind looking at that and/or sending an LSS file with the solution so we could analyze and understand it better? We read through a dozen times and tried various approaches but are not fully understanding what you suggest. Thank you so much for your time!
QUICK UPDATE: I am getting close to understanding your suggestion. I was successfully able to set up another test with the following:
1 - A multiple choice question (MC1)
2 - A Ranking Question and I used its sidebar for the ARRAY FILTER and I used the value "MC1" so it can reference the multiple choice question. I matched the answers and the values in the answers in both the Multiple Choice question and the Ranking Question. It successfully displayed the items in the ranking question based on what I chose in the MC.
NOW my next step is to use this MC as a hidden question and I am ATTEMPTING to set its checked values based on an Array Question
If the array (Q5) includes foods such as pizza (SQ1), sushi(SQ2), and burgers(SQ3) and the answer options include: I like(A1), I love(A2), I don't like(A3)
Pizza - I like | I love | I don't like
Sushi - I like | I love | I don't like
Burgers - I like | I love | I don't like
I am trying to use an equation question to look at each row (food) and for any given row that the user chose "I love"(A2), I am attempting to check in the related box in the multiple choice.
Example: {
MC1_SQ1
= if(
q5_SQ1.NAOK
== "A2", "Y", "")}
I cannot get this to check the box in the MC if it is in a condition. But I can get to check the box if I simply use {
MC1_SQ1
="Y"} and when I test the value of {q5_SQ1} it does read as "A2". I am not sure why it is not working within a condition though. I have placed the equation question in many locations in the event it was an order of execution issue.
The order of my questions are as follows:
1. Array with the food
2. The multiple choice Question with the options Pizza, Sushi, Burgers (each with a checkbox)
3. The ranking order question
4. The equation question with the code to listen for the value in the array, then to check off the boxes in the multiple choice question. I have placed this question above and below all other questions.
Thanks for any help!