<?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 ArcGIS Pro 2.6: A geoprocessing tool to concatenate values of a table, in ArcGIS Pro Ideas</title>
    <link>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idi-p/941105</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-left: 0cm;"&gt;ArcGIS Pro 2.6: A geoprocessing tool to concatenate values of a table,&lt;/P&gt;&lt;P style="margin-left: 0cm;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left: 0cm;"&gt;It would be great if we got an out of the box geoprocessing tool that concatenates values of a table. I’m aware of that such tool could be available but I wanted this tool to be built in in the Pro&lt;/P&gt;&lt;P style="margin-left: 0cm;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left: 0cm;"&gt;In the screenshot below, the result of concatenation of attribute table P1 is represented in the stand-alone table T3&lt;/P&gt;&lt;P style="margin-left: 0cm;"&gt;&lt;/P&gt;&lt;P style="margin-left: 0cm;"&gt;&lt;/P&gt;&lt;P style="margin-left: 0cm;"&gt;&lt;IMG __jive_id="502806" alt="" class="jive-emoji image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/502806_Clip_67.jpg" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 09 Aug 2020 08:14:08 GMT</pubDate>
    <dc:creator>JamalNUMAN</dc:creator>
    <dc:date>2020-08-09T08:14:08Z</dc:date>
    <item>
      <title>ArcGIS Pro 2.6: A geoprocessing tool to concatenate values of a table,</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idi-p/941105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-left: 0cm;"&gt;ArcGIS Pro 2.6: A geoprocessing tool to concatenate values of a table,&lt;/P&gt;&lt;P style="margin-left: 0cm;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left: 0cm;"&gt;It would be great if we got an out of the box geoprocessing tool that concatenates values of a table. I’m aware of that such tool could be available but I wanted this tool to be built in in the Pro&lt;/P&gt;&lt;P style="margin-left: 0cm;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left: 0cm;"&gt;In the screenshot below, the result of concatenation of attribute table P1 is represented in the stand-alone table T3&lt;/P&gt;&lt;P style="margin-left: 0cm;"&gt;&lt;/P&gt;&lt;P style="margin-left: 0cm;"&gt;&lt;/P&gt;&lt;P style="margin-left: 0cm;"&gt;&lt;IMG __jive_id="502806" alt="" class="jive-emoji image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/502806_Clip_67.jpg" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Aug 2020 08:14:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idi-p/941105</guid>
      <dc:creator>JamalNUMAN</dc:creator>
      <dc:date>2020-08-09T08:14:08Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.6: A geoprocessing tool to concatenate values of a table,</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941106#M5602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="comment token"&gt;# ---- it is called Calculate Field or the field calculator&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;# ---- no need to type the field names, just select them&lt;/SPAN&gt;

f&lt;SPAN class="string token"&gt;"{!Locality!}, {!Type!}"&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;# ---- option 1&lt;/SPAN&gt;

&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;"&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;!Locality!&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; !Type!&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN class="comment token"&gt;# ---- option 2&lt;/SPAN&gt;

!Locality!&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;", "&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;!Type!&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN class="comment token"&gt;# ---- option 3&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 11:53:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941106#M5602</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2021-12-12T11:53:41Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.6: A geoprocessing tool to concatenate values of a table,</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941107#M5603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Although concatenation isn't about statistics, I think expanding Summary Statistics functionality to support concatenation of string/text fields makes more sense than creating a whole new tool.&amp;nbsp; In Python and many other programming languages, the same "+" that is used to sum numerics is also used to concatenate text, so why not have Summary Statistics sum text?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Aug 2020 17:38:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941107#M5603</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2020-08-09T17:38:37Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.6: A geoprocessing tool to concatenate values of a table,</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941108#M5604</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/3116"&gt;Dan Patterson&lt;/A&gt;‌, the idea is proposing a GP tool with a new output that has less rows than the input. Field calculator doesn't solve this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Aug 2020 21:58:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941108#M5604</guid>
      <dc:creator>ColeAndrews</dc:creator>
      <dc:date>2020-08-11T21:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.6: A geoprocessing tool to concatenate values of a table,</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941109#M5605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can't be done in a gdb, you can concatenate into a new field and delete the old ones.&amp;nbsp; The extra effort to do this doesn't warrant bulging the Pro code base, when simple workflows already exist&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It sort of falls into the category of this Idea&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/ideas/3495" target="_blank"&gt;https://community.esri.com/ideas/3495&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;which won't get implemented&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jun 2021 09:00:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941109#M5605</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2021-06-22T09:00:35Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.6: A geoprocessing tool to concatenate values of a table,</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941110#M5606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You lost me. This can easily be accomplished with a GP tool, I can do it in modelbuilder already. The request is just for it to be packaged as an out of the box GP tool...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Aug 2020 22:15:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941110#M5606</guid>
      <dc:creator>ColeAndrews</dc:creator>
      <dc:date>2020-08-11T22:15:01Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.6: A geoprocessing tool to concatenate values of a table,</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941111#M5607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;see the link I added&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Aug 2020 22:17:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941111#M5607</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2020-08-11T22:17:30Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.6: A geoprocessing tool to concatenate values of a table,</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941112#M5608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Correct Cole. What I wanted by this idea is to have this tool as an out of the box.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2020 08:54:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941112#M5608</guid>
      <dc:creator>JamalNUMAN</dc:creator>
      <dc:date>2020-08-12T08:54:54Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.6: A geoprocessing tool to concatenate values of a table,</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941113#M5609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It exists in existing toolsets&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/docs/DOC-14928-free-tools-for-arcgis-pro-table-tools"&gt;https://community.esri.com/docs/DOC-14928-free-tools-for-arcgis-pro-table-tools&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2020 16:15:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941113#M5609</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2020-08-12T16:15:09Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.6: A geoprocessing tool to concatenate values of a table,</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941114#M5610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi DAN,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May you please explain more how to use these codes, applying calculate feild tool does not end with the required results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;P&gt;Majdoleen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 16 Aug 2020 09:20:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941114#M5610</guid>
      <dc:creator>MajdoleenO_A__Awadallah</dc:creator>
      <dc:date>2020-08-16T09:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.6: A geoprocessing tool to concatenate values of a table,</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941115#M5611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As easy as 1,2,3 etcetera &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-emoji image-1 jive-image" height="392" src="https://community.esri.com/legacyfs/online/503547_concate_fields.png" width="888" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 16 Aug 2020 09:30:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941115#M5611</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2020-08-16T09:30:09Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.6: A geoprocessing tool to concatenate values of a table,</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941116#M5612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I got the same results as you!! but this is not our case, I want it to concatenate&amp;nbsp;all the values the got the same type in one row, in your case, it writes the locality, type!! please have a look on the attached photos provided by Jamal!!&lt;/P&gt;&lt;P&gt;&lt;IMG height="547" src="https://community.esri.com/legacyfs/online/503573_Clip_67.jpg" width="570" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 16 Aug 2020 09:38:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941116#M5612</guid>
      <dc:creator>MajdoleenO_A__Awadallah</dc:creator>
      <dc:date>2020-08-16T09:38:04Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.6: A geoprocessing tool to concatenate values of a table,</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941117#M5613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is a "summarize" operation&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 16 Aug 2020 09:50:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941117#M5613</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2020-08-16T09:50:25Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.6: A geoprocessing tool to concatenate values of a table,</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941118#M5614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Summarize only count the number and does not concatenate all the values in one row!&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 16 Aug 2020 10:01:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941118#M5614</guid>
      <dc:creator>MajdoleenO_A__Awadallah</dc:creator>
      <dc:date>2020-08-16T10:01:00Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.6: A geoprocessing tool to concatenate values of a table,</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941119#M5615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In my opinion, the misunderstanding across this thread is due to the title. "Concatenate values of a table" sounds like what&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/3116"&gt;Dan Patterson&lt;/A&gt; is trying to answer, but that's not exactly the request. You have to actually look at the pictures to understand the request.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would suggest either revising the title. I'm not sure if you can do that, or if &lt;A href="https://community.esri.com/migrated-users/45316"&gt;Kory Kramer&lt;/A&gt;&amp;nbsp;has to. As &lt;A href="https://community.esri.com/migrated-users/3420"&gt;Joshua Bixby&lt;/A&gt;&amp;nbsp;stated, I would consider this an enhancement to the summary statistics tool or the pivot table tool. &lt;EM&gt;"&lt;SPAN style="background-color: #ffffff;"&gt;expanding Summary Statistics functionality to support concatenation of string/text field"&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2020 20:27:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941119#M5615</guid>
      <dc:creator>ColeAndrews</dc:creator>
      <dc:date>2020-08-18T20:27:06Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.6: A geoprocessing tool to concatenate values of a table,</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941120#M5616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-left: 0in;"&gt;Thank you for the input Cole.&lt;/P&gt;&lt;P style="margin-left: 0in;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left: 0in;"&gt;Correct. Sometimes words fail to explain the idea. This is why I support my words with screenshots to precisely describe the idea.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Aug 2020 11:07:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941120#M5616</guid>
      <dc:creator>JamalNUMAN</dc:creator>
      <dc:date>2020-08-20T11:07:40Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.6: A geoprocessing tool to concatenate values of a table,</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941121#M5617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As Cole and Dan indicate this can be done as a fairly simple python script which you could wire up as a tool and then you would have your tool!&amp;nbsp; I put together the code for you, it is below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code is designed to be run from the python script window in ArcPro but with not much effort could be turned into a tool that you could drag 'n' drop into modelbuilder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="comment token"&gt;# -*- coding: utf-8 -*-&lt;/SPAN&gt;
&lt;SPAN class="string token"&gt;"""
Title:&amp;nbsp; Group and Concatenate into table

Usage:&amp;nbsp; Edit inputs and run this code in Python window in ArcPro.

Author: Duncan Hornby

Created: 21/8/20
"""&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; arcpy
&lt;SPAN class="keyword token"&gt;from&lt;/SPAN&gt; collections &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; defaultdict &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; dd
d &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; dd&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;list&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;overwriteOutput&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token boolean"&gt;True&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;# Inputs&lt;/SPAN&gt;
fLayer &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"fcTest"&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="comment token"&gt;# The layer in your TOC&lt;/SPAN&gt;
outPath &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"c:\scratch"&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="comment token"&gt;# The output table path&lt;/SPAN&gt;
outName &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"testOut.dbf"&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="comment token"&gt;# The output table name&lt;/SPAN&gt;
fullPath &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; outPath &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"\\"&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; outName
fields &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"local"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"type"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN class="comment token"&gt;# field to concatenate is local grouping by type&lt;/SPAN&gt;
outFields &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Type"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Locality"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;# Fields in output table&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;# Create the group and concatenation&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;with&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;da&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;SearchCursor&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;fLayer&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;fields&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; cursor&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; row &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; cursor&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; loc &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; row&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; typ &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; row&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; d&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;typ&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;append&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;loc&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;# Create output table&lt;/SPAN&gt;
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;CreateTable_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;outPath&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;outName&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; fn &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; outFields&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;AddField_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;fullPath&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;fn&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"TEXT"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;None&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;None&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;50&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&lt;SPAN class="comment token"&gt;# Write results to table&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;with&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;da&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;InsertCursor&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;fullPath&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;outFields&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; inCursor&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; k&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;v &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; d&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;items&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; commastring &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;','&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;join&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;v&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; row &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;k&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;commastring&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; inCursor&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;insertRow&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;row&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&lt;SPAN class="comment token"&gt;# Finished!&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Finished!"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 11:53:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941121#M5617</guid>
      <dc:creator>DuncanHornby</dc:creator>
      <dc:date>2021-12-12T11:53:44Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.6: A geoprocessing tool to concatenate values of a table,</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941122#M5618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-left: 0in;"&gt;Many thanks Duncan,&lt;/P&gt;&lt;P style="margin-left: 0in;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left: 0in;"&gt;My point here is trying to suggest adding as many basic tools as possible to be out of the box so that they got available with the software installation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2020 07:56:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941122#M5618</guid>
      <dc:creator>JamalNUMAN</dc:creator>
      <dc:date>2020-08-24T07:56:08Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.6: A geoprocessing tool to concatenate values of a table,</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941123#M5619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We've entered [&lt;SPAN style="color: #080707; background-color: #ffffff;"&gt;ENH-000133689:&amp;nbsp;&lt;SPAN&gt;Expand Summary Statistics functionality to support concatenation of multiple string/text fields.] into our support system.&amp;nbsp; I associated this idea with that request, but if anybody is interested in being attached directly to the enhancement request, you can &lt;A href="https://support.esri.com/en/contact-tech-support"&gt;contact technical support&lt;/A&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #080707; background-color: #ffffff;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #080707; background-color: #ffffff;"&gt;&lt;SPAN&gt;The current thinking is that this will not be summing text, rather joining the string fields using a delimiter specified by the user.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2020 15:40:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941123#M5619</guid>
      <dc:creator>KoryKramer</dc:creator>
      <dc:date>2020-09-09T15:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.6: A geoprocessing tool to concatenate values of a table,</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941124#M5620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Kory.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2020 17:40:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/arcgis-pro-2-6-a-geoprocessing-tool-to-concatenate/idc-p/941124#M5620</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2020-09-09T17:40:05Z</dc:date>
    </item>
  </channel>
</rss>

