List of household members

Hi everyone

I am looking for how to create a list of household members with a question that will start to come back for all household members.

For example:
We have Joyce, John, Marte, Rebecca as household members.
Create a text field to fill in the names of household members and then all these questions will start to come back based on the names of the household members entered.
We want these three questions for all this household member.

  1. How old are you?
  2. Did you go to school?
  3. What is the highest level of education you have achieved

Thank you

Perhaps, you can refer to this https://docs.getodk.org/form-repeats/#using-additional-repeats-to-follow-up-on-repeated-questions

and

to make it able to select the household member, you may need to perform one calculation:

  1. use join function to join the previously entered household member into space-separated string

  2. use select_one ${space-separated string} #creating a choice list

The link below having similar concept here, but it used concat functions to join two choice list

1 Like