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
Solved! Go to Solution.
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.
Hi @Neal_t_k ,
thanks a lot!. Finally, it worked by removing the CONCAT from @pulldata and adding single quotes at the end of the concat in those coming from text fields.
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.
Hi @Neal_t_k ,
thanks a lot!. Finally, it worked by removing the CONCAT from @pulldata and adding single quotes at the end of the concat in those coming from text fields.