Does anyone know the proper formatting for doing if then statements with a drop down list in survey 123.
First question is a drop down list with choices: A, B, C, D, E, F, G, ... (total options is close to 100, so i didn't want to do a single choice/select one format)
The second question is a single text line that I'd like to populate from the drop down answer in the first question:
what I'd like to Do:
If question one is "E"
then question two equals "bird xyz"
Else if question one is "C"
then question two equals "dog xyz"
so on and so forth....
Else (if other is selected and filled in)
then question two is "other"
The current code I have:
if((${field_one}, "E"), "bird xyz"), elif((${field_one}, "C"), "Dog xyz"), elif((${field_one}, "B"), "cat xyz"), else("monkey xyz")