<?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: Populate fields using python (cumulative) in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/59001#M4662</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;44..  Thank you..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Oct 2015 19:51:27 GMT</pubDate>
    <dc:creator>TerryGustafson</dc:creator>
    <dc:date>2015-10-15T19:51:27Z</dc:date>
    <item>
      <title>Re: Populate fields using python (cumulative)</title>
      <link>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58972#M4633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d; font-family: 'Calibri','sans-serif'; font-size: 11pt;"&gt;Ok I think I’m close but need a little more help.&amp;nbsp; I have a&lt;BR /&gt;table like the one attached.&amp;nbsp; I’m trying to create a line segment from it&lt;BR /&gt;that goes from 22.473 to 27.346 but they are on separate lines.&amp;nbsp; I need a&lt;BR /&gt;python script to calculate the to_measure from OBJECTID 1 equal to the&lt;BR /&gt;to_measure from OBJECTID2.&amp;nbsp; Do you think that is possible?&lt;/SPAN&gt;&lt;SPAN style="color: #1f497d; font-family: 'Calibri','sans-serif'; font-size: 11pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 12:50:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58972#M4633</guid>
      <dc:creator>TerryGustafson</dc:creator>
      <dc:date>2015-10-14T12:50:44Z</dc:date>
    </item>
    <item>
      <title>Re: Populate fields using python (cumulative)</title>
      <link>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58973#M4634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can iterate through each RID and update the to_MEAS field.&amp;nbsp; Ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;table = "Sample"

ridList = []

with arcpy.da.SearchCursor(table, ["RID"]) as cursor:
&amp;nbsp;&amp;nbsp;&amp;nbsp; for row in cursor:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ridList.append(row[0])

del cursor

ridList = set(ridList)

for RID in ridList:
&amp;nbsp;&amp;nbsp;&amp;nbsp; toMeasList = []
&amp;nbsp;&amp;nbsp;&amp;nbsp; with arcpy.da.SearchCursor(table, ["RID", "to_MEAS"], "RID = '" + RID + "' ") as cursor:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for row in cursor:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; toMeasList.append(row[1])
&amp;nbsp;&amp;nbsp;&amp;nbsp; del cursor
&amp;nbsp;&amp;nbsp;&amp;nbsp; toMeasList.sort()

&amp;nbsp;&amp;nbsp;&amp;nbsp; with arcpy.da.UpdateCursor(table, ["to_MEAS"], "RID = '" + RID + "'") as cursor:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for row in cursor:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; row[0] = toMeasList[-1]
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cursor.updateRow(row)
&amp;nbsp;&amp;nbsp;&amp;nbsp; del cursor&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 22:14:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58973#M4634</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2021-12-10T22:14:18Z</dc:date>
    </item>
    <item>
      <title>Re: Populate fields using python (cumulative)</title>
      <link>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58974#M4635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I get a 000539 : Error message from Python.  It seems like it should work.  At the end its taking the row[0] array and setting the toMeasList equal to it minus 1 record correct?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 13:49:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58974#M4635</guid>
      <dc:creator>TerryGustafson</dc:creator>
      <dc:date>2015-10-14T13:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: Populate fields using python (cumulative)</title>
      <link>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58975#M4636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Says syntax error line 1 which is declaring the table correct?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 14:13:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58975#M4636</guid>
      <dc:creator>TerryGustafson</dc:creator>
      <dc:date>2015-10-14T14:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: Populate fields using python (cumulative)</title>
      <link>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58976#M4637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you will need to update the 'table' variable with the feature class/table in the Table of Contents.&amp;nbsp; Ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table = 'RoutingTable'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 14:24:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58976#M4637</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2015-10-14T14:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: Populate fields using python (cumulative)</title>
      <link>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58977#M4638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did that, the table is called result.&amp;nbsp; Does it have to be a certain type of table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 14:25:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58977#M4638</guid>
      <dc:creator>TerryGustafson</dc:creator>
      <dc:date>2015-10-14T14:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: Populate fields using python (cumulative)</title>
      <link>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58978#M4639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you zip and upload the table you are using?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 14:28:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58978#M4639</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2015-10-14T14:28:20Z</dc:date>
    </item>
    <item>
      <title>Re: Populate fields using python (cumulative)</title>
      <link>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58979#M4640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I created sever types of table and set the table variable but seems to keep throwing the syntax at line 1.&amp;nbsp; Here is an example of an exported table and the code I used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;table = "Export_Output"
ridList = []
with arcpy.da.SearchCursor(table, ["RID"]) as cursor:
&amp;nbsp;&amp;nbsp;&amp;nbsp; for row in cursor:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ridList.append(row[0])
del cursor
ridList = set(ridList)
for RID in ridList:
&amp;nbsp;&amp;nbsp;&amp;nbsp; toMeasList = []
&amp;nbsp;&amp;nbsp;&amp;nbsp; with arcpy.da.SearchCursor(table, ["RID", "to_MEAS"], "RID = '" + RID + "'") as cursor:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for row in cursor:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; toMeasList.append(row[1])
&amp;nbsp;&amp;nbsp;&amp;nbsp; del cursor
&amp;nbsp;&amp;nbsp;&amp;nbsp; toMeasList.sort()
&amp;nbsp;&amp;nbsp;&amp;nbsp; with arcpy.da.UpdateCursor(table, ["to_MEAS"], "RID = '" + RID + "'") as cursor:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for row in cursor:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; row[0] = toMeasList[-1]
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cursor.updateRow(row)
&amp;nbsp;&amp;nbsp;&amp;nbsp; del cursor&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 22:14:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58979#M4640</guid>
      <dc:creator>TerryGustafson</dc:creator>
      <dc:date>2021-12-10T22:14:21Z</dc:date>
    </item>
    <item>
      <title>Re: Populate fields using python (cumulative)</title>
      <link>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58980#M4641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, made a little headway. It appears to not like the null values in the fields.&amp;nbsp; When I: replace them with 0 then it does not error out at line 1 anymore.&amp;nbsp; :It then give me the warming.&amp;nbsp; "A Field name was not found or there were unbalanced quotation marks".&amp;nbsp; I was not sure if this was due to line 21 or 15..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 17:07:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58980#M4641</guid>
      <dc:creator>TerryGustafson</dc:creator>
      <dc:date>2015-10-14T17:07:31Z</dc:date>
    </item>
    <item>
      <title>Re: Populate fields using python (cumulative)</title>
      <link>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58981#M4642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is an image of the errors I receive in ArcMap&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 21:25:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58981#M4642</guid>
      <dc:creator>TerryGustafson</dc:creator>
      <dc:date>2015-10-14T21:25:24Z</dc:date>
    </item>
    <item>
      <title>Re: Populate fields using python (cumulative)</title>
      <link>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58982#M4643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm jumping into this thread midstream, but I'm confused why this has anything to do with Calculate Field. You're running this in the Python window, not the field calculator, correct?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In any case, it looks like however you are calling CalculateField, it is set to VB not Python.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 21:43:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58982#M4643</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2015-10-14T21:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: Populate fields using python (cumulative)</title>
      <link>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58983#M4644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I’m trying to calculate a field based on another field in a table using python in the field Calculator.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 21:47:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58983#M4644</guid>
      <dc:creator>TerryGustafson</dc:creator>
      <dc:date>2015-10-14T21:47:12Z</dc:date>
    </item>
    <item>
      <title>Re: Populate fields using python (cumulative)</title>
      <link>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58984#M4645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The last line in the error message indicates that the Field Calculator was run in VB mode:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;del cursor" VB #&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 21:54:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58984#M4645</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2015-10-14T21:54:10Z</dc:date>
    </item>
    <item>
      <title>Re: Populate fields using python (cumulative)</title>
      <link>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58985#M4646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is my fault I copied the wrong results..  I get an invalid syntax when I select python..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 21:58:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58985#M4646</guid>
      <dc:creator>TerryGustafson</dc:creator>
      <dc:date>2015-10-14T21:58:36Z</dc:date>
    </item>
    <item>
      <title>Re: Populate fields using python (cumulative)</title>
      <link>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58986#M4647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure if it's an error in the error message or your code, but the line &lt;STRONG&gt;ridList.append(row[0])&lt;/STRONG&gt; should be indented twice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;edit: actually, there are several indentation errors, probably just a problem in the error message. Can you post your code so we can see your indentation? Instructions &lt;A _jive_internal="true" href="https://community.esri.com/people/curtvprice/blog/2014/09/25/posting-code-blocks-in-the-new-geonet"&gt;here&lt;/A&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 22:04:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58986#M4647</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2015-10-14T22:04:29Z</dc:date>
    </item>
    <item>
      <title>Re: Populate fields using python (cumulative)</title>
      <link>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58987#M4648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Terry,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code I provided was written to be run in the python window.&amp;nbsp; Attached is an example.&amp;nbsp; Here are the steps to take:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.&amp;nbsp; Add the 'sample' table to ArcMap&lt;/P&gt;&lt;P&gt;2.&amp;nbsp; Open the Python window&lt;/P&gt;&lt;P&gt;3.&amp;nbsp; Open 'script1.py' in a text editor&lt;/P&gt;&lt;P&gt;4.&amp;nbsp; Copy the syntax&lt;/P&gt;&lt;P&gt;5.&amp;nbsp; Paste into the Python window and click Enter a couple of times to execute the code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The 'sample' table should be updated successfully.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2015 12:04:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58987#M4648</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2015-10-15T12:04:25Z</dc:date>
    </item>
    <item>
      <title>Re: Populate fields using python (cumulative)</title>
      <link>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58988#M4649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, that does work, I was trying to run the python code via the Field calculator.  Is that possible?  The reason I wanted to do that was I’m building a model to run a process and the second to the last step is to populate the to_MEAS so I can create a line segment.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2015 12:28:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58988#M4649</guid>
      <dc:creator>TerryGustafson</dc:creator>
      <dc:date>2015-10-15T12:28:37Z</dc:date>
    </item>
    <item>
      <title>Re: Populate fields using python (cumulative)</title>
      <link>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58989#M4650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It may be easier to &lt;A href="http://desktop.arcgis.com/en/desktop/latest/analyze/modelbuilder/integrating-scripts-within-a-model.htm"&gt;add the script to the model&lt;/A&gt;.&amp;nbsp; The only thing you would need to change in the script is the 'table' variable.&amp;nbsp; You would need to set this to the full path to where the table is.&amp;nbsp; Ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table = r"C:\data\sample.dbf"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2015 12:56:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58989#M4650</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2015-10-15T12:56:55Z</dc:date>
    </item>
    <item>
      <title>Re: Populate fields using python (cumulative)</title>
      <link>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58990#M4651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, I’m stuck on what my parameters should be for the “Display Name” and “Data Type”.  I’m thinking Display name is “RID” and Data type is numeric?  Also the table is actually going to be in memory so will I need to set the table path?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2015 13:16:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58990#M4651</guid>
      <dc:creator>TerryGustafson</dc:creator>
      <dc:date>2015-10-15T13:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: Populate fields using python (cumulative)</title>
      <link>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58991#M4652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You actually won't need to set any parameters.&amp;nbsp; This is only necessary if the python code contains 'arcpy.GetParameterAsText'.&amp;nbsp; However, I believe you are going to have to export the table from IN MEMORY to disk.&amp;nbsp; Then you can update the script to this path.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2015 13:38:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/re-populate-fields-using-python-cumulative/m-p/58991#M4652</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2015-10-15T13:38:58Z</dc:date>
    </item>
  </channel>
</rss>

