Hi all. I'm relatively new to Survey123 Connect and would like to know if there is a way to create a conditional relevant question based upon which a note may appear in the note field based on selection from the drop down list? For example, I have a list of villages in the Select_one question and I want to show in a note field below that question the name of a staff working in that village. If a person selects a certain village from the drop down list, the person's name working in that village should appear in the note field. How may I achieve this?
Solved! Go to Solution.
Hi, I think you will want to use a combination of thing here.
You can use something like this to hide a note when no selection has been made in a select_one:
string-length(${village})>0
Then you can use the pulldata() function in the calculation column to populate the note with a lookup.
pulldata("villagesCSV","staffname","village",${village})
To illustrate this, I am attaching to this response a couple of files so you can see how things work.
Birds....Villages...the same thing...
Hi, I think you will want to use a combination of thing here.
You can use something like this to hide a note when no selection has been made in a select_one:
string-length(${village})>0
Then you can use the pulldata() function in the calculation column to populate the note with a lookup.
pulldata("villagesCSV","staffname","village",${village})
To illustrate this, I am attaching to this response a couple of files so you can see how things work.
Birds....Villages...the same thing...