<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Using Arcade to return a hyperlink from another Table in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-return-a-hyperlink-from-another/m-p/1081958#M43641</link>
    <description>&lt;P&gt;That worked great!&lt;/P&gt;&lt;P&gt;Word for anyone who tries this in the future: Make sure that your hyperlink field includes an alias for the link, or else only your separators will show up. They will link correctly, but you won't be able to tell what they are by looking.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;&lt;P&gt;Edit 8/12/21:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-pro-questions/bringing-up-selected-records-in-a-popup-sorted-by/m-p/1088302/highlight/true#M44375" target="_blank" rel="noopener"&gt;Use "&amp;lt;br&amp;gt;" if you want a new line&lt;/A&gt;; HTML will not take TextFormatting.NewLine&lt;/P&gt;</description>
    <pubDate>Thu, 12 Aug 2021 23:54:51 GMT</pubDate>
    <dc:creator>AlfredBaldenweck</dc:creator>
    <dc:date>2021-08-12T23:54:51Z</dc:date>
    <item>
      <title>Using Arcade to return a hyperlink from another Table</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-return-a-hyperlink-from-another/m-p/1081846#M43622</link>
      <description>&lt;P&gt;Follow-up to this question&amp;nbsp;&lt;A href="https://community.esri.com/t5/arcgis-pro-questions/relating-table-a-to-table-d-via-tables-b-and-c/m-p/1073566#M42636" target="_blank" rel="noopener"&gt;Solved: Re: Relating Table A to Table D via Tables B and C - Esri Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I got the expression working great, but it when it tries to return a field with hyperlinks&amp;nbsp; E.g.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;a href="C:\Users\USER\Documents\ArcGIS\Projects\testing\Documents_testing\Lorem Ipsum.docx" target=_top"&amp;gt;Lorem Ipsum.docx&amp;lt;/a&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;it returns a blank.&lt;/P&gt;&lt;P&gt;I&lt;A href="https://community.esri.com/t5/arcgis-enterprise-portal-questions/hyperlink-in-arcade-expression-loop/m-p/310626#M4208" target="_blank" rel="noopener"&gt; looked into it&lt;/A&gt; and found &lt;A href="https://community.esri.com/t5/arcgis-pro-blog/using-arcgis-pro-and-arcade-expressions-to-create/ba-p/885102" target="_blank" rel="noopener"&gt;this post, but I've had a lot of trouble implementing it.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I've tried making a new field with just the blank file path, then adding the html formatting to the final bit that's pushed , but that doesn't return anything either.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;var docs = []
for(var a in filtered_a) {
  Push(docs, "&amp;lt;a href="'+a.File_Path+'"&amp;lt;/a&amp;gt;")
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to have the expression return hyperlinks?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jul 2021 17:17:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-return-a-hyperlink-from-another/m-p/1081846#M43622</guid>
      <dc:creator>AlfredBaldenweck</dc:creator>
      <dc:date>2021-07-22T17:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: Using Arcade to return a hyperlink from another Table</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-return-a-hyperlink-from-another/m-p/1081857#M43623</link>
      <description>&lt;P&gt;Once you have your &lt;STRONG&gt;docs&lt;/STRONG&gt; array, try this:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;var out_str = ''

for(var d in docs){
    out_str += docs[d] + ' | ' //or the separator of your choice
}

return out_str&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jcarlson_1-1626975269504.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/19156i70DB84CD8E3B5539/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jcarlson_1-1626975269504.png" alt="jcarlson_1-1626975269504.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jul 2021 17:34:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-return-a-hyperlink-from-another/m-p/1081857#M43623</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2021-07-22T17:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: Using Arcade to return a hyperlink from another Table</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-return-a-hyperlink-from-another/m-p/1081958#M43641</link>
      <description>&lt;P&gt;That worked great!&lt;/P&gt;&lt;P&gt;Word for anyone who tries this in the future: Make sure that your hyperlink field includes an alias for the link, or else only your separators will show up. They will link correctly, but you won't be able to tell what they are by looking.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;&lt;P&gt;Edit 8/12/21:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-pro-questions/bringing-up-selected-records-in-a-popup-sorted-by/m-p/1088302/highlight/true#M44375" target="_blank" rel="noopener"&gt;Use "&amp;lt;br&amp;gt;" if you want a new line&lt;/A&gt;; HTML will not take TextFormatting.NewLine&lt;/P&gt;</description>
      <pubDate>Thu, 12 Aug 2021 23:54:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-return-a-hyperlink-from-another/m-p/1081958#M43641</guid>
      <dc:creator>AlfredBaldenweck</dc:creator>
      <dc:date>2021-08-12T23:54:51Z</dc:date>
    </item>
  </channel>
</rss>

