Page 1 of 1

If "Yes" Specifiy

Posted: September 14th, 2022, 4:43 am
by JeffCid
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

Re: If "Yes" Specifiy

Posted: September 14th, 2022, 5:32 am
by joshua.deguito
Create another variable item, let's say 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

Re: If "Yes" Specifiy

Posted: September 14th, 2022, 10:50 am
by JeffCid
Thanks a lot Senior! It is working now