<?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: Append tool returning &amp;lt;Null&amp;gt; fields - table to layer append in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/append-tool-returning-lt-null-gt-fields-table-to/m-p/1275104#M67570</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;I am trying to use the Append tool&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN&gt;The Append tool is not suited for this task. It takes all features from one table and copies them to the second table. That is not what you want to do here.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;As&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/215600"&gt;@DanPatterson&lt;/a&gt;&amp;nbsp;suggested, Join Field could work. You can't get it to work because you need to join on a common field. That is "Name" in your case, but you're trying to join on "Mgmt".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Another way to do this is with a little python script (untested):&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;# parameters
input_table = "HOA_Boundaries_ExportFeature"
update_table = HOA_Export_Test.csv"
join_field = "Name"
update_fields = ["Mgmt"]

# read the update table into a dict
fields = [join_field] + update_fields
updates = {row[0]: row for row in arcpy.da.SearchCursor(update_table, fields)}

# loop over the input table with an UpdateCursor
with arcpy.da.UpdateCursor(input_table, fields) as cursor:
    for row in cursor:
        # copy the updated values
        try:
            cursor.updateRow(updates[row[0])
        except KeyError:
            # no update found for this join_field, ignore
            pass&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 04 Apr 2023 07:18:30 GMT</pubDate>
    <dc:creator>JohannesLindner</dc:creator>
    <dc:date>2023-04-04T07:18:30Z</dc:date>
    <item>
      <title>Append tool returning &lt;Null&gt; fields - table to layer append</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/append-tool-returning-lt-null-gt-fields-table-to/m-p/1275063#M67565</link>
      <description>&lt;P&gt;I am trying to update a layer in Pro with a table the has updated information. I am trying to use the Append tool. When I run the tool, the field remain &amp;lt;Null&amp;gt;. Should I be using the Append tool or something different?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dwold_0-1680575401419.png" style="width: 539px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/67149iBE64DBE1C21449D2/image-dimensions/539x302?v=v2" width="539" height="302" role="button" title="dwold_0-1680575401419.png" alt="dwold_0-1680575401419.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/215600"&gt;@DanPatterson&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/167692"&gt;@DavidPike&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/2538"&gt;@Robert_LeClair&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/294341"&gt;@JohannesLindner&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 02:35:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/append-tool-returning-lt-null-gt-fields-table-to/m-p/1275063#M67565</guid>
      <dc:creator>dwold</dc:creator>
      <dc:date>2023-04-04T02:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: Append tool returning &lt;Null&gt; fields - table to layer append</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/append-tool-returning-lt-null-gt-fields-table-to/m-p/1275065#M67566</link>
      <description>&lt;P&gt;You can't append a csv file to a featureclass.&amp;nbsp; You can use Join field&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/join-field.htm" target="_blank"&gt;Join Field (Data Management)—ArcGIS Pro | Documentation&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 02:38:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/append-tool-returning-lt-null-gt-fields-table-to/m-p/1275065#M67566</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2023-04-04T02:38:02Z</dc:date>
    </item>
    <item>
      <title>Re: Append tool returning &lt;Null&gt; fields - table to layer append</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/append-tool-returning-lt-null-gt-fields-table-to/m-p/1275071#M67567</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/215600"&gt;@DanPatterson&lt;/a&gt;&amp;nbsp;Hi Dan - Thanks for you help with this. I ran the Join Field tool. It created a new field in my layer but the value is still &amp;lt;Null&amp;gt;. I've attached a screenshot. Do you see anything that I am doing wrong that it is always returning a &amp;lt;Null&amp;gt; value?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dwold_0-1680577071661.png" style="width: 649px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/67150iC549B8ADD8507B26/image-dimensions/649x344?v=v2" width="649" height="344" role="button" title="dwold_0-1680577071661.png" alt="dwold_0-1680577071661.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 02:58:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/append-tool-returning-lt-null-gt-fields-table-to/m-p/1275071#M67567</guid>
      <dc:creator>dwold</dc:creator>
      <dc:date>2023-04-04T02:58:18Z</dc:date>
    </item>
    <item>
      <title>Re: Append tool returning &lt;Null&gt; fields - table to layer append</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/append-tool-returning-lt-null-gt-fields-table-to/m-p/1275104#M67570</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;I am trying to use the Append tool&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN&gt;The Append tool is not suited for this task. It takes all features from one table and copies them to the second table. That is not what you want to do here.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;As&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/215600"&gt;@DanPatterson&lt;/a&gt;&amp;nbsp;suggested, Join Field could work. You can't get it to work because you need to join on a common field. That is "Name" in your case, but you're trying to join on "Mgmt".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Another way to do this is with a little python script (untested):&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;# parameters
input_table = "HOA_Boundaries_ExportFeature"
update_table = HOA_Export_Test.csv"
join_field = "Name"
update_fields = ["Mgmt"]

# read the update table into a dict
fields = [join_field] + update_fields
updates = {row[0]: row for row in arcpy.da.SearchCursor(update_table, fields)}

# loop over the input table with an UpdateCursor
with arcpy.da.UpdateCursor(input_table, fields) as cursor:
    for row in cursor:
        # copy the updated values
        try:
            cursor.updateRow(updates[row[0])
        except KeyError:
            # no update found for this join_field, ignore
            pass&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 07:18:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/append-tool-returning-lt-null-gt-fields-table-to/m-p/1275104#M67570</guid>
      <dc:creator>JohannesLindner</dc:creator>
      <dc:date>2023-04-04T07:18:30Z</dc:date>
    </item>
    <item>
      <title>Re: Append tool returning &lt;Null&gt; fields - table to layer append</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/append-tool-returning-lt-null-gt-fields-table-to/m-p/1275256#M67588</link>
      <description>&lt;P&gt;Dan and Johann are all correct in their responses.&amp;nbsp; One thing that stood out to me in the common field between your two tables - it does not appear unique enough to me.&amp;nbsp; For Joins in ArcGIS Pro, you have to consider cardinality, 1-1, M-1 and only in ArcGIS Pro 1-M. You can read more about it &lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/data/tables/joins-and-relates.htm" target="_self"&gt;here&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 13:59:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/append-tool-returning-lt-null-gt-fields-table-to/m-p/1275256#M67588</guid>
      <dc:creator>Robert_LeClair</dc:creator>
      <dc:date>2023-04-04T13:59:15Z</dc:date>
    </item>
  </channel>
</rss>

