I have a Survey123 that has a multiple choice question asking what you are going to do with the fish you catch. The answers include: sell, eat, donate, make bait, salted. The next question asks for the price of fish, but only need to appear if "sell" is chosen in the previous multiple choice. Regex with pipe "regex(${uso2}, "sell|eat|bait|salt|donate")" works to make the next question appear no matter the combination of inputs, but also obviously shows the price question even if sell is not selected.
Is it possible, without investigating every single possible combination of answers and writing them in a very long-winded selected formula to set a condition so that if "sell" is selected amongst any answer the price of fish question shows up (and so that if sell is not selected, the price question does not appear)?
Solved! Go to Solution.
Selected should work for this.
selected(question, value) Checks whether answer is selected. This function is used for select_one and select_multiple questions selected(${question_one}, 'a')
hope that helps
Selected should work for this.
selected(question, value) Checks whether answer is selected. This function is used for select_one and select_multiple questions selected(${question_one}, 'a')
hope that helps