<?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 Concatenation Help in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/concatenation-help/m-p/1339638#M74174</link>
    <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;I am needing some assistance with writing a concatenation. I have a "label" attribute field that is currently "null".&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Example.JPG" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/83491iA4461C6E72BAFD5E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Example.JPG" alt="Example.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I need to concatenate the fields from other columns into the "label" column.&lt;/P&gt;&lt;P&gt;Individual Columns:&lt;/P&gt;&lt;P&gt;Address&lt;/P&gt;&lt;P&gt;Pre-directional&lt;/P&gt;&lt;P&gt;Street&lt;/P&gt;&lt;P&gt;Street Type&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to concatenate these individual columns to read as a full address in the "label" column.&lt;/P&gt;&lt;P&gt;I have tried several times, and while the expression I write will validate, I also get an error when I try to run it.&lt;/P&gt;&lt;P&gt;I am currently using ArcGIS Pro 3.1.3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help you all could provide would be greatly appreciated.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
    <pubDate>Thu, 19 Oct 2023 15:55:17 GMT</pubDate>
    <dc:creator>analyzethis25</dc:creator>
    <dc:date>2023-10-19T15:55:17Z</dc:date>
    <item>
      <title>Concatenation Help</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/concatenation-help/m-p/1339638#M74174</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;I am needing some assistance with writing a concatenation. I have a "label" attribute field that is currently "null".&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Example.JPG" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/83491iA4461C6E72BAFD5E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Example.JPG" alt="Example.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I need to concatenate the fields from other columns into the "label" column.&lt;/P&gt;&lt;P&gt;Individual Columns:&lt;/P&gt;&lt;P&gt;Address&lt;/P&gt;&lt;P&gt;Pre-directional&lt;/P&gt;&lt;P&gt;Street&lt;/P&gt;&lt;P&gt;Street Type&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to concatenate these individual columns to read as a full address in the "label" column.&lt;/P&gt;&lt;P&gt;I have tried several times, and while the expression I write will validate, I also get an error when I try to run it.&lt;/P&gt;&lt;P&gt;I am currently using ArcGIS Pro 3.1.3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help you all could provide would be greatly appreciated.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 19 Oct 2023 15:55:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/concatenation-help/m-p/1339638#M74174</guid>
      <dc:creator>analyzethis25</dc:creator>
      <dc:date>2023-10-19T15:55:17Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenation Help</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/concatenation-help/m-p/1339668#M74176</link>
      <description>&lt;P&gt;The error could be caused by concatenating a string with an integer.&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Oct 2023 16:44:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/concatenation-help/m-p/1339668#M74176</guid>
      <dc:creator>JasonBagwell1</dc:creator>
      <dc:date>2023-10-19T16:44:44Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenation Help</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/concatenation-help/m-p/1339690#M74179</link>
      <description>&lt;P&gt;In Arcade, you can use the&amp;nbsp;&lt;STRONG&gt;Concatenate&lt;/STRONG&gt; function with an array of the items you want joined. Specifying the separator, in this example, an empty space, will result in that being placed in between each value of the array.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var fields = [
  $feature.field1,
  $feature.field2,
  $feature.field3,
  ...
  $feature.fieldN
]

return Concatenate(fields, ' ')&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's also possible to filter that array so that null entries are skipped. If you have some addresses with or without units, pre/post directionals, etc., it can be nice to avoid extra whitespace.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Oct 2023 17:23:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/concatenation-help/m-p/1339690#M74179</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2023-10-19T17:23:36Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenation Help</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/concatenation-help/m-p/1339711#M74184</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JasonBagwell1_0-1697738229031.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/83502i50CA67630B4458DE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JasonBagwell1_0-1697738229031.png" alt="JasonBagwell1_0-1697738229031.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Where you would calculate using your field names.&lt;/P&gt;&lt;P&gt;Concatenate($feature.Address, ' ', $feature.PreDirectional, ' ', $feature.Street, ' ', $feature.St_Type)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Oct 2023 18:00:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/concatenation-help/m-p/1339711#M74184</guid>
      <dc:creator>JasonBagwell1</dc:creator>
      <dc:date>2023-10-19T18:00:10Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenation Help</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/concatenation-help/m-p/1340452#M74272</link>
      <description>&lt;P&gt;Thank you so much! These solutions worked perfectly. Exactly what I needed.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2023 13:32:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/concatenation-help/m-p/1340452#M74272</guid>
      <dc:creator>analyzethis25</dc:creator>
      <dc:date>2023-10-23T13:32:49Z</dc:date>
    </item>
  </channel>
</rss>

