<?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: Survey123 Calculated Custom URL Hyperlink to another Survey123 Form in ArcGIS Survey123 Questions</title>
    <link>https://community.esri.com/t5/arcgis-survey123-questions/survey123-calculated-custom-url-hyperlink-to/m-p/1013701#M31755</link>
    <description>&lt;P&gt;James, I found this thread and think the solution I need is within it but I can't quite get it to work. I am trying to create a link to a dummy survey within a main survey I created. The dummy has pre filled answers that we want to supply to those filling out the main survey as an example.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried using a note in survey connect which contains a link to this survey but I can't get the link to work. It all just shows up as a note.&amp;nbsp; This is what I am currently using:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;concat('&amp;lt;a href="&lt;A href="https://survey123.arcgis.com/share/" target="_blank" rel="noopener"&gt;https://survey123.arcgis.com/share/&lt;/A&gt;&lt;STRONG&gt;My_survey_parameter&lt;/STRONG&gt;?mode=edit&amp;amp;globalId={&lt;STRONG&gt;globalid_from_filled_survey_form&lt;/STRONG&gt;}'"&amp;gt;Click Here&amp;lt;/a&amp;gt;')&lt;/P&gt;&lt;P&gt;Any help you can provide is much appreciated!&lt;/P&gt;</description>
    <pubDate>Mon, 04 Jan 2021 19:28:00 GMT</pubDate>
    <dc:creator>KyleMcElroy</dc:creator>
    <dc:date>2021-01-04T19:28:00Z</dc:date>
    <item>
      <title>Survey123 Calculated Custom URL Hyperlink to another Survey123 Form</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/survey123-calculated-custom-url-hyperlink-to/m-p/878871#M30025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/3263"&gt;James Tedrick&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hoping you could lend a hand. I am trying to build up a Survey123 Custom URL Scheme to open another survey and parse parameters from the one form to the other. Based on some conditional questions if certain answers are met the user should rather be entering the data in a separate survey. Hence the workflow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basically the User will be doing an asset audit but then we would like to parse some parameters from that audit through to a safety form before they proceed the audit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to build up the Custom URL. I can build the full URL up using a calculation and if I copy the result to my browser it works:&lt;/P&gt;&lt;P&gt;concat("arcgis-survey123://?itemID=BLAHBLAHBLAH","&amp;amp;field:Project_Code=",${ProjectNo},"&amp;amp;field:Project_Name=",${ProjName})&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However I&amp;nbsp;try to wrap them in the HREF formats&amp;nbsp;by concatenating the HREF tags to build up the full URL&amp;nbsp;so that it forms a hyperlink so the user can click on it and it take him to the appropriate Survey. However&amp;nbsp;I cannot seem to get this to work. Somewhere in the interpretation of the double quotation marks within the concat I cant seem to get it to interpret this properly. The Question is, how do I quote the Quotation marks within&amp;nbsp;the concat function which will build up the text for the HREF? I have tried the usual """", \", &amp;amp;quot;&lt;BR /&gt;&lt;BR /&gt;Any help would be greatly appreciated. Thanks in advance&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2017 23:00:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/survey123-calculated-custom-url-hyperlink-to/m-p/878871#M30025</guid>
      <dc:creator>NicholasMoore</dc:creator>
      <dc:date>2017-08-08T23:00:55Z</dc:date>
    </item>
    <item>
      <title>Re: Survey123 Calculated Custom URL Hyperlink to another Survey123 Form</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/survey123-calculated-custom-url-hyperlink-to/m-p/878872#M30026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nick,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm able to get this to work by using single quotation marks (') as the text delimiter for the concat function:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concat('&amp;lt;a href="arcgis-survey123://?itemID=BLAHBLAHBLAH', '&amp;amp;field:Project_Code=', ${project_code}, '&amp;amp;field:Project_Name=', ${project_name}, '"&amp;gt;Click Here&amp;lt;/a&amp;gt;')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2017 18:33:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/survey123-calculated-custom-url-hyperlink-to/m-p/878872#M30026</guid>
      <dc:creator>JamesTedrick</dc:creator>
      <dc:date>2017-08-09T18:33:33Z</dc:date>
    </item>
    <item>
      <title>Re: Survey123 Calculated Custom URL Hyperlink to another Survey123 Form</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/survey123-calculated-custom-url-hyperlink-to/m-p/878873#M30027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks James. This seems to work perfectly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2017 22:38:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/survey123-calculated-custom-url-hyperlink-to/m-p/878873#M30027</guid>
      <dc:creator>NicholasMoore</dc:creator>
      <dc:date>2017-08-09T22:38:46Z</dc:date>
    </item>
    <item>
      <title>Re: Survey123 Calculated Custom URL Hyperlink to another Survey123 Form</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/survey123-calculated-custom-url-hyperlink-to/m-p/1013701#M31755</link>
      <description>&lt;P&gt;James, I found this thread and think the solution I need is within it but I can't quite get it to work. I am trying to create a link to a dummy survey within a main survey I created. The dummy has pre filled answers that we want to supply to those filling out the main survey as an example.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried using a note in survey connect which contains a link to this survey but I can't get the link to work. It all just shows up as a note.&amp;nbsp; This is what I am currently using:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;concat('&amp;lt;a href="&lt;A href="https://survey123.arcgis.com/share/" target="_blank" rel="noopener"&gt;https://survey123.arcgis.com/share/&lt;/A&gt;&lt;STRONG&gt;My_survey_parameter&lt;/STRONG&gt;?mode=edit&amp;amp;globalId={&lt;STRONG&gt;globalid_from_filled_survey_form&lt;/STRONG&gt;}'"&amp;gt;Click Here&amp;lt;/a&amp;gt;')&lt;/P&gt;&lt;P&gt;Any help you can provide is much appreciated!&lt;/P&gt;</description>
      <pubDate>Mon, 04 Jan 2021 19:28:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/survey123-calculated-custom-url-hyperlink-to/m-p/1013701#M31755</guid>
      <dc:creator>KyleMcElroy</dc:creator>
      <dc:date>2021-01-04T19:28:00Z</dc:date>
    </item>
    <item>
      <title>Re: Survey123 Calculated Custom URL Hyperlink to another Survey123 Form</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/survey123-calculated-custom-url-hyperlink-to/m-p/1015189#M31844</link>
      <description>&lt;P&gt;I am really quite stuck on trying to use concat to link to an auto filled survey form. Essentially, I am trying to link to this dummy survey in a note label in the main survey. The dummy survey is completely separate.&amp;nbsp; I understand how to use hyperlinks in notes, but when I do the below command it doesn't worked. I think I am supposed to use concat based on this thread but nothing I do seems to work and I am really beating my head against the wall. Thank you!&lt;/P&gt;&lt;TABLE width="425"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="425"&gt;&amp;lt;a ref ="&lt;A href="https://survey123.arcgis.com/share/925a1859fc764f7b89042b88cfbc5146?mode=edit&amp;amp;globalId={9daf2ef3-afec-4be3-8e69-7598486c1a33" target="_blank"&gt;https://survey123.arcgis.com/share/925a1859fc764f7b89042b88cfbc5146?mode=edit&amp;amp;globalId={9daf2ef3-afec-4be3-8e69-7598486c1a33&lt;/A&gt;}" &amp;gt; Click Here &amp;lt;/a&amp;gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Fri, 08 Jan 2021 19:47:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/survey123-calculated-custom-url-hyperlink-to/m-p/1015189#M31844</guid>
      <dc:creator>KyleMcElroy</dc:creator>
      <dc:date>2021-01-08T19:47:36Z</dc:date>
    </item>
  </channel>
</rss>

