Hello, Community!
I have created a dashboard in ArcGIS Online and am trying to figure out a way to add a a field in my table that contains a link to the full survey results. This link would take the user to the "Data" page in Survey 123 to display the survey results corresponding to the record in the table. I would ideally like the link to be able to take the user directly to the corresponding result, and not just the data page itself. Is there a way to do this custom link thing in Arcade or some other method? Thanks so much for your help and advice!
Solved! Go to Solution.
Add "objectid" to your table.
Go to the Values tab, click advanced editing and update the display text for "objectid" to this inserting your <url> for the data tab.
displayText : Concatenate('<a href="',Text("<URL>?objectIds="),Text($datapoint.objectid),'" target="blank">Link to Survey 123 Data</a>',),
Add "objectid" to your table.
Go to the Values tab, click advanced editing and update the display text for "objectid" to this inserting your <url> for the data tab.
displayText : Concatenate('<a href="',Text("<URL>?objectIds="),Text($datapoint.objectid),'" target="blank">Link to Survey 123 Data</a>',),
Thanks Neal, this worked!