<?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 Is there a way to have a user select multiple parcels on a map? in ArcGIS Survey123 Questions</title>
    <link>https://community.esri.com/t5/arcgis-survey123-questions/is-there-a-way-to-have-a-user-select-multiple/m-p/1699049#M66074</link>
    <description>&lt;P&gt;I know this has been brought up before and I thought there might have been addressed at some point in a post by&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/2929"&gt;@IsmaelChivite&lt;/a&gt;,&amp;nbsp;but I can't see to find it. I have a map in survey and currently it can only accept the selection of a single parcel that it will store the data for in a linked feature layer once the survey is submitted. Ideally, I'd like to be able to capture more than one parcel using a map setup like this. Is there anyway to set this up?&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've attached my survey excel file in case someone wants to have a look at it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's what the setup currently looks like in Experience Builder (This is what will be pushed to the public):&lt;/P&gt;&lt;P&gt;The map sits on the right side and the user chooses the parcel there and shows some information about the parcel below it. On the left side the information is pushed to the survey and captured in two questions.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MPach_0-1777478675996.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/151726i9D1F1C63E6574A5C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MPach_0-1777478675996.png" alt="MPach_0-1777478675996.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help in advance,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;</description>
    <pubDate>Wed, 29 Apr 2026 16:08:09 GMT</pubDate>
    <dc:creator>MPach</dc:creator>
    <dc:date>2026-04-29T16:08:09Z</dc:date>
    <item>
      <title>Is there a way to have a user select multiple parcels on a map?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/is-there-a-way-to-have-a-user-select-multiple/m-p/1699049#M66074</link>
      <description>&lt;P&gt;I know this has been brought up before and I thought there might have been addressed at some point in a post by&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/2929"&gt;@IsmaelChivite&lt;/a&gt;,&amp;nbsp;but I can't see to find it. I have a map in survey and currently it can only accept the selection of a single parcel that it will store the data for in a linked feature layer once the survey is submitted. Ideally, I'd like to be able to capture more than one parcel using a map setup like this. Is there anyway to set this up?&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've attached my survey excel file in case someone wants to have a look at it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's what the setup currently looks like in Experience Builder (This is what will be pushed to the public):&lt;/P&gt;&lt;P&gt;The map sits on the right side and the user chooses the parcel there and shows some information about the parcel below it. On the left side the information is pushed to the survey and captured in two questions.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MPach_0-1777478675996.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/151726i9D1F1C63E6574A5C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MPach_0-1777478675996.png" alt="MPach_0-1777478675996.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help in advance,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;</description>
      <pubDate>Wed, 29 Apr 2026 16:08:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/is-there-a-way-to-have-a-user-select-multiple/m-p/1699049#M66074</guid>
      <dc:creator>MPach</dc:creator>
      <dc:date>2026-04-29T16:08:09Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to have a user select multiple parcels on a map?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/is-there-a-way-to-have-a-user-select-multiple/m-p/1699189#M66086</link>
      <description>&lt;P&gt;One option and not as you describe, but you could add a button open the survey123 form on a new page with a dynamic Url using an arcade script to concat the selected parcels into a list and amending that list as a url parameter.&lt;/P&gt;&lt;P&gt;But the map and survey are not side by side and wouldn't update with a different selection&lt;/P&gt;&lt;P&gt;arcade for the button would look something like this:&lt;/P&gt;&lt;LI-CODE lang="markdown"&gt;var selectedFeatures = $dataSources["&amp;lt;dataSource_layer&amp;gt;"].selectedFeatures;

var ids = [];

for (var f in selectedFeatures) {
    if (!IsEmpty(f.&amp;lt;ParcelID&amp;gt;)) {
        Push(ids, f.&amp;lt;ParcelID&amp;gt;);
    }
}

var ParcelList = Concatenate(ids, ",");

return "https://survey123.arcgis.com/share/&amp;lt;itemID&amp;gt;?field:&amp;lt;fieldName&amp;gt;=" + UrlEncode(ParcelList);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Apr 2026 21:12:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/is-there-a-way-to-have-a-user-select-multiple/m-p/1699189#M66086</guid>
      <dc:creator>Neal_t_k</dc:creator>
      <dc:date>2026-04-29T21:12:18Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to have a user select multiple parcels on a map?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/is-there-a-way-to-have-a-user-select-multiple/m-p/1699272#M66094</link>
      <description>&lt;P&gt;Thanks for idea Neal. I'll have to look into that a little more. I was hoping there was a slightly easier way, but I'm not really expecting much.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2026 13:03:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/is-there-a-way-to-have-a-user-select-multiple/m-p/1699272#M66094</guid>
      <dc:creator>MPach</dc:creator>
      <dc:date>2026-04-30T13:03:31Z</dc:date>
    </item>
  </channel>
</rss>

