I have some fields with value sets with capture type as radio button. I will like to know how I will be able to include an option or code which will enable the Enumerator to proceed to enter a follow up description should he/she choose a particular option.
For eg. Field name is Structural Use with value sets
1 Residential
2 Commercial
3 Annex
4 Mixed
The chosen capture type is Radio Button
I will like the Enumerator to provide further information (specify if Annex is either kitchen or bathroom, etc) posibbly on the next screen should he or she choose either option 3 and 4.
Thanks
If "Yes" Specifiy
-
joshua.deguito
- Posts: 20
- Joined: August 17th, 2022, 11:07 pm
Re: If "Yes" Specifiy
Create another variable item, let's say STRUCTURE_INFO.
logic inside the STRUCTURE_INFO:
logic inside the STRUCTURE_INFO:
Code: Select all
Preproc
ask if STRUCTURE_USE in 3:4; //this will only be asked if the enumerator chose codes 3 or 4 in the previous question STRUCTURE_USE
-
JeffCid
- Posts: 13
- Joined: September 13th, 2022, 2:04 am
- Location: Ghana
Re: If "Yes" Specifiy
Thanks a lot Senior! It is working now