Hello, I am a new in survey123 connect, I work on the enterprise application, I use select_one with the csv file.
when I create a select_one based on another select, and the value type in the csv file is numeric Like:
mianselct [id , name] { [1,Computer],[2,Labtop] }
subselect [id,name,mianid ] { [1,hp,1] ,[2,dell,1]}
select_one search(‘subselect’,'matches','mainid',${maid})
but it work when adding letter to number:
mianselct [id , name] { [C1,Computer],[C2,Labtop] }
subselect [id,name,mianid ] { [1,hp,C1] ,[2,dell,C1]}
how to solve problem?