Select to view content in your preferred language

Link to Survey 123 Result in Dashboard Table

184
2
Jump to solution
2 weeks ago
Labels (1)
HenriettaK
Occasional Contributor

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!

0 Kudos
1 Solution

Accepted Solutions
Neal_t_k
Frequent Contributor

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>',),

 

View solution in original post

2 Replies
Neal_t_k
Frequent Contributor

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>',),

 

HenriettaK
Occasional Contributor

Thanks Neal, this worked!

0 Kudos