Hey Stella,
Just me trying to imagine what might be the problem - in a multi select scenario, the answer itself is a list of options. So in the follow-up response setup, you will likely need a nested list like:
But as you can imagine, multi-select makes things a lot more complex, such as the order in which the participants select the options might matter. In that case, you could try adding [["value2", "value1"]] as another matching condition to it to capture all cases.
Just me trying to imagine what might be the problem - in a multi select scenario, the answer itself is a list of options. So in the follow-up response setup, you will likely need a nested list like:
Code:
{"match": [["value1", "value2"]], "responses": ["follow_up_response1"]}
But as you can imagine, multi-select makes things a lot more complex, such as the order in which the participants select the options might matter. In that case, you could try adding [["value2", "value1"]] as another matching condition to it to capture all cases.