<?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: Arcpy in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/arcpy/m-p/1042886#M60616</link>
    <description>&lt;P&gt;You could also use &lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/calculate-field.htm" target="_self"&gt;Calculate Field&lt;/A&gt; to do something simple like this. You can even script &lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/add-field.htm" target="_self"&gt;creating the new field&lt;/A&gt; if you need!&lt;/P&gt;</description>
    <pubDate>Thu, 01 Apr 2021 14:25:51 GMT</pubDate>
    <dc:creator>BlakeTerhune</dc:creator>
    <dc:date>2021-04-01T14:25:51Z</dc:date>
    <item>
      <title>Arcpy</title>
      <link>https://community.esri.com/t5/python-questions/arcpy/m-p/1042858#M60614</link>
      <description>&lt;P&gt;Good day everybody.&lt;/P&gt;&lt;P&gt;I am currently working with a file geodatabase. I created an additional field in a feature class table and want to add all the information from another field located in the same feature class table. I guess I can do it with&amp;nbsp;arcpy.da.UpdateCursor but not sure how to copy from one field to another. Could you please give any advice?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Apr 2021 13:22:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy/m-p/1042858#M60614</guid>
      <dc:creator>Mick</dc:creator>
      <dc:date>2021-04-01T13:22:38Z</dc:date>
    </item>
    <item>
      <title>Re: Arcpy</title>
      <link>https://community.esri.com/t5/python-questions/arcpy/m-p/1042864#M60615</link>
      <description>&lt;P&gt;Hi Mick,&lt;/P&gt;&lt;P&gt;This is pretty straight forward.&amp;nbsp; Just include the two fields and set the source to the target:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;with arcpy.da.UpdateCursor(fc, [sourceFld, targetFld]) as uCur:
    for row in Ucur:
        row[1] = row[0]
        uCur.updateRow(row)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Apr 2021 13:39:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy/m-p/1042864#M60615</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-04-01T13:39:58Z</dc:date>
    </item>
    <item>
      <title>Re: Arcpy</title>
      <link>https://community.esri.com/t5/python-questions/arcpy/m-p/1042886#M60616</link>
      <description>&lt;P&gt;You could also use &lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/calculate-field.htm" target="_self"&gt;Calculate Field&lt;/A&gt; to do something simple like this. You can even script &lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/add-field.htm" target="_self"&gt;creating the new field&lt;/A&gt; if you need!&lt;/P&gt;</description>
      <pubDate>Thu, 01 Apr 2021 14:25:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy/m-p/1042886#M60616</guid>
      <dc:creator>BlakeTerhune</dc:creator>
      <dc:date>2021-04-01T14:25:51Z</dc:date>
    </item>
  </channel>
</rss>

