Select to view content in your preferred language

@pulldata in Survey123 stopped working

98
1
Wednesday
Aure_Jardines
Emerging Contributor

Hi there,

I can´t figure out the issue.

My surveys were working fine until mid-August, but since then they haven’t been working properly. The problem is that the field which should be automatically filled by the pulldata function is not being populated.

i'm using pulldata function on calculation field, like this

pulldata("@layer", "getValue", "attributes.nameFieldFeature",'https://services5.arcgis.com/as5dr6ZhyY4GBjjt/arcgis/rest/services/NAME/FeatureServer/1', concat("key=", ${KEY}))

 

I would greatly appreciate any help

 

Tags (2)
0 Kudos
1 Reply
Neal_t_k
Frequent Contributor

Try taking the concat() out and put it in a helper questions.

${clause} = concat("key=", ${KEY})

pulldata("@layer", "getValue", "attributes.nameFieldFeature",'https://services5.arcgis.com/as5dr6ZhyY4GBjjt/arcgis/rest/services/NAME/FeatureServer/1', ${clause})

sometimes the pulldata() don't like calcs inside the function.