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
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.