<?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>idea Concatenate Unique values (only) in ArcGIS Pro Ideas</title>
    <link>https://community.esri.com/t5/arcgis-pro-ideas/concatenate-unique-values-only/idi-p/1308114</link>
    <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/129401"&gt;@KoryKramer&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/1125"&gt;@DrewFlater&lt;/a&gt;&amp;nbsp; The implementation of the concatenate option has been great, thank you, but what I see now is the need for a "concatenate UNIQUE" option.&amp;nbsp; See this tech support&amp;nbsp; example:&amp;nbsp;&lt;A href="https://support.esri.com/en-us/knowledge-base/how-to-concatenate-field-values-using-a-case-field-in-a-000028144" target="_blank"&gt;https://support.esri.com/en-us/knowledge-base/how-to-concatenate-field-values-using-a-case-field-in-a-000028144&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;It lists the same value multiple times (i.e. 111).&amp;nbsp; I would like to see the option to only show unique values (111 would only show once).&amp;nbsp; My use of this today resulted in the same value populated numerous times making the field width in excess of 500 characters.&amp;nbsp; Would it be possible to add a checkbox option to only return unique values?&lt;/P&gt;&lt;P&gt;Previous idea: &lt;A href="https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idi-p/941105/page/4#comments" target="_blank"&gt;https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idi-p/941105/page/4#comments&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 14 Jul 2023 01:12:17 GMT</pubDate>
    <dc:creator>jakek</dc:creator>
    <dc:date>2023-07-14T01:12:17Z</dc:date>
    <item>
      <title>Concatenate Unique values (only)</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/concatenate-unique-values-only/idi-p/1308114</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/129401"&gt;@KoryKramer&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/1125"&gt;@DrewFlater&lt;/a&gt;&amp;nbsp; The implementation of the concatenate option has been great, thank you, but what I see now is the need for a "concatenate UNIQUE" option.&amp;nbsp; See this tech support&amp;nbsp; example:&amp;nbsp;&lt;A href="https://support.esri.com/en-us/knowledge-base/how-to-concatenate-field-values-using-a-case-field-in-a-000028144" target="_blank"&gt;https://support.esri.com/en-us/knowledge-base/how-to-concatenate-field-values-using-a-case-field-in-a-000028144&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;It lists the same value multiple times (i.e. 111).&amp;nbsp; I would like to see the option to only show unique values (111 would only show once).&amp;nbsp; My use of this today resulted in the same value populated numerous times making the field width in excess of 500 characters.&amp;nbsp; Would it be possible to add a checkbox option to only return unique values?&lt;/P&gt;&lt;P&gt;Previous idea: &lt;A href="https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idi-p/941105/page/4#comments" target="_blank"&gt;https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idi-p/941105/page/4#comments&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2023 01:12:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/concatenate-unique-values-only/idi-p/1308114</guid>
      <dc:creator>jakek</dc:creator>
      <dc:date>2023-07-14T01:12:17Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate Unique values (only)</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/concatenate-unique-values-only/idc-p/1308983#M25707</link>
      <description>&lt;P&gt;You can run a field calculator on the &lt;SPAN&gt;concatenated field.&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;def sortValues(the_value, delimiter=','):
    """Sort a separated value into an order
    Useful to run on ArcGIS processes where there is no control on returned values.
    For example SpatialJoin, JOIN_ONE_TO_ONE, with FieldMapping Merge Rule = Join
    """
    if the_value == None:
        return the_value

    # Create a Python list by splitting the string on the delimeter
    the_list = the_value.split(delimiter)
    # unique elements of the list using set()
    the_set = set(the_list)
    # turn the set back to a list
    the_list = list(the_set)
    # Sort the list
    the_list.sort()

    # Reassemble the string from the sorted list
    rval = delimiter.join(the_list)
    return rval&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jul 2023 11:55:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/concatenate-unique-values-only/idc-p/1308983#M25707</guid>
      <dc:creator>MarkBryant</dc:creator>
      <dc:date>2023-07-18T11:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate Unique values (only)</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/concatenate-unique-values-only/idc-p/1514412#M31385</link>
      <description>&lt;P&gt;Is this regarding field mapping? If so, yes, &lt;STRONG&gt;concatenate unique&lt;/STRONG&gt; would be very, very useful. I'm sure there's a use for it, but I really only need each unique value listed in my output once. I'm doing a spatial join if that makes sense.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="wayfaringrob_0-1722631638038.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/111524iB0F8E338E96AE6D3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="wayfaringrob_0-1722631638038.png" alt="wayfaringrob_0-1722631638038.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Aug 2024 20:48:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/concatenate-unique-values-only/idc-p/1514412#M31385</guid>
      <dc:creator>wayfaringrob</dc:creator>
      <dc:date>2024-08-02T20:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate Unique values (only)</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/concatenate-unique-values-only/idc-p/1515816#M31439</link>
      <description>&lt;P&gt;For anyone who's using Oracle, this could be done using the LISTAGG SQL aggregate function.&amp;nbsp;&lt;A href="https://stackoverflow.com/questions/11510870/listagg-in-oracle-to-return-distinct-values" target="_blank"&gt;https://stackoverflow.com/questions/11510870/listagg-in-oracle-to-return-distinct-values&lt;/A&gt;. It would be done in a full SQL query, such as a query layer or a database view.&lt;/P&gt;&lt;P&gt;Other enterprise database types might support similar behaviour. Maybe mobile geodatabases (SQLite) too.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Aug 2024 21:10:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/concatenate-unique-values-only/idc-p/1515816#M31439</guid>
      <dc:creator>Bud</dc:creator>
      <dc:date>2024-08-06T21:10:04Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate Unique values (only)</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/concatenate-unique-values-only/idc-p/1582693#M33692</link>
      <description>&lt;P&gt;I agree. I use this to transfer field values over&amp;nbsp; from one layer (ie counties) to another (ie map extents) and if the same value appears twice, it is added both times. For features, you can try a 'dissolve' on the field you want to concatenate to remove redundant instances of this value before running the summary with concatenate option. It's an extra step, but if you model it up you can reduce to one step - DissolveSumConcatenate.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2025 15:22:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/concatenate-unique-values-only/idc-p/1582693#M33692</guid>
      <dc:creator>RandyMcGregor_BMcD</dc:creator>
      <dc:date>2025-02-06T15:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate Unique values (only)</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/concatenate-unique-values-only/idc-p/1605263#M34449</link>
      <description>&lt;P&gt;Yes! Adding "Concatenate Unique" as a Summary Statistics "Statistic Type" option would be amazing. Concatenate is sort of useful but most of the time the results are unwieldy and require further processing to be useful.&lt;/P&gt;&lt;P&gt;I saw another post somewhere that said you could first create a summary table on the two fields and then do a summary table on the results to get a unique Concatenate field, but that's complicated and creates an additional unneeded table.&lt;/P&gt;&lt;P&gt;Also, that &lt;A title="Concatenate field values using a Case Field in ArcGIS Pro" href="https://support.esri.com/en-us/knowledge-base/how-to-concatenate-field-values-using-a-case-field-in-a-000028144" target="_blank" rel="noopener"&gt;knowledge base article&lt;/A&gt; uses kind of a weird example - if you know that all of the values in the "case" field will have the same value in the other field, why wouldn't you just do a summary table on both fields? You'd get a cleaner output (without duplicate values in the concatenated field). The actual usefulness of Concatenate is to find all the distinct values that occur with each "case" field value and put them together. But the results of a "Concatenate Unique" statistic type would be so much more easy to deal with in most instances.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Apr 2025 16:25:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/concatenate-unique-values-only/idc-p/1605263#M34449</guid>
      <dc:creator>David_Kimball</dc:creator>
      <dc:date>2025-04-11T16:25:57Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate Unique values (only)</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/concatenate-unique-values-only/idc-p/1634241#M35599</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/129401"&gt;@KoryKramer&lt;/a&gt;&amp;nbsp; Has there been any development or discussion on this idea?&amp;nbsp; If not, can we at least get&amp;nbsp; a response from esri and maybe a category assigned ("under consideration")?&amp;nbsp; Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jul 2025 16:54:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/concatenate-unique-values-only/idc-p/1634241#M35599</guid>
      <dc:creator>jakek</dc:creator>
      <dc:date>2025-07-18T16:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate Unique values (only)</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/concatenate-unique-values-only/idc-p/1692579#M37945</link>
      <description>&lt;P&gt;Related: &lt;A href="https://community.esri.com/t5/geoprocessing-documents/spatial-join-s-hidden-trick-on-how-to-transfer/tac-p/1194370/highlight/true#M22" target="_self"&gt;Spatial Join’s hidden trick on how to transfer attribute values in a One to Many relationship&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Mar 2026 16:20:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/concatenate-unique-values-only/idc-p/1692579#M37945</guid>
      <dc:creator>Bud</dc:creator>
      <dc:date>2026-03-25T16:20:31Z</dc:date>
    </item>
  </channel>
</rss>

