I'm trying to populate a drop down list from a search() question.
This question returns all the streets (polylines) within a buffer distance of the location of the user and then they select the closest street to them. This works without a problem.
However I would also like to concatenate multiple fields in the drop down list (street name, type of street, number from and up to) to make sure there are no errors when filling the form.
Is this possible?
Current appearance: search(concat("queryStreetName?url=service_url/0&distance=", ${distancebuffer}, "&units=esriSRUnit_Meter&orderByFields=field ASC"), 'intersects', '@geopoint', ${location})
where ${location} is a geopoint question.
I thought I could do something with pulldata() but from what I understand you can get only 1 record with this function, where I need multiple records and multiple fields.
Thanks!