<?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: How to append summary statistics to dbf table in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/how-to-append-summary-statistics-to-dbf-table/m-p/723346#M56005</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to create one table containing the "SUM" results for&amp;nbsp;all the drainline feature classes. My full data set has 60 different feature classes, here I am running the script on only two feature classes. When this script runs it creates a table of results for the first feature class in the list (BVH_DrainLine) and then overwrites that with the last feature class in the list (VRM_DrainLine. My table result is below, with only one row containing only the last feature class, but I want it to contain both.&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/391345_pastedImage_1.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Dec 2017 23:24:40 GMT</pubDate>
    <dc:creator>Myla-RaeBaldwin</dc:creator>
    <dc:date>2017-12-20T23:24:40Z</dc:date>
    <item>
      <title>How to append summary statistics to dbf table</title>
      <link>https://community.esri.com/t5/python-questions/how-to-append-summary-statistics-to-dbf-table/m-p/723344#M56003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am working on a project to characterize watersheds where we are carrying out fieldwork. I am trying to use&amp;nbsp;Summary Statistics to sum all the stream length channels contained in a watershed for multiple feature classes (drainline).&amp;nbsp; Using arcpy.Statistics_analysis&amp;nbsp;creates the output I want&amp;nbsp;in a table but&amp;nbsp;my script overwrites the table instead of adding the sum outputs to the table for each drainline feature. I am unable to figure out how to do this. My&amp;nbsp;script on a subset of the data&amp;nbsp;is below:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="comment token"&gt;# Set local variables&lt;/SPAN&gt;
ws_drainlines &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ListFeatureClasses&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;""&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Line"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;""&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
outStatsTable &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"C:/_LOCALdata/AB_ARCHYDRO/AB_ARCHYDRO_NOP.GDB/DrainageDensity"&lt;/SPAN&gt;
field &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Watershed"&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;# Sum the drainline lengths for each DrainLine feature&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; drainline &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; ws_drainlines&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;drainline&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;drainline&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; field&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; &lt;SPAN class="string token"&gt;""&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;""&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"20"&lt;/SPAN&gt;&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;CalculateField_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;drainline&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; field&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'"'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; drainline &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; &lt;SPAN class="string token"&gt;""&lt;/SPAN&gt;&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;Statistics_analysis&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;drainline&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; outStatsTable&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="string token"&gt;"Shape_Length"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"SUM"&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; field&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&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;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 06:56:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-append-summary-statistics-to-dbf-table/m-p/723344#M56003</guid>
      <dc:creator>Myla-RaeBaldwin</dc:creator>
      <dc:date>2021-12-12T06:56:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to append summary statistics to dbf table</title>
      <link>https://community.esri.com/t5/python-questions/how-to-append-summary-statistics-to-dbf-table/m-p/723345#M56004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you want to join the results?&amp;nbsp;&lt;A href="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/add-join.htm"&gt;http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/add-join.htm&lt;/A&gt; or create a new table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2017 23:08:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-append-summary-statistics-to-dbf-table/m-p/723345#M56004</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2017-12-20T23:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to append summary statistics to dbf table</title>
      <link>https://community.esri.com/t5/python-questions/how-to-append-summary-statistics-to-dbf-table/m-p/723346#M56005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to create one table containing the "SUM" results for&amp;nbsp;all the drainline feature classes. My full data set has 60 different feature classes, here I am running the script on only two feature classes. When this script runs it creates a table of results for the first feature class in the list (BVH_DrainLine) and then overwrites that with the last feature class in the list (VRM_DrainLine. My table result is below, with only one row containing only the last feature class, but I want it to contain both.&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/391345_pastedImage_1.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2017 23:24:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-append-summary-statistics-to-dbf-table/m-p/723346#M56005</guid>
      <dc:creator>Myla-RaeBaldwin</dc:creator>
      <dc:date>2017-12-20T23:24:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to append summary statistics to dbf table</title>
      <link>https://community.esri.com/t5/python-questions/how-to-append-summary-statistics-to-dbf-table/m-p/723347#M56006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can either:&lt;/P&gt;&lt;P&gt;a.) Calculate a unique ID to differentiate your lines in each feature class, Merge together, and calculate all the stats at once.&lt;/P&gt;&lt;P&gt;b.) Change the output name of your stats table each time through the loop so it doesn't get overwritten, and Merge all those together afterwards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;edit: I suppose you could also run Append each time through the loop to add to the stats table. General rule of thumb is to try not to run a tool each time through a loop, but it may be okay for just a few...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2017 23:44:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-append-summary-statistics-to-dbf-table/m-p/723347#M56006</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2017-12-20T23:44:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to append summary statistics to dbf table</title>
      <link>https://community.esri.com/t5/python-questions/how-to-append-summary-statistics-to-dbf-table/m-p/723348#M56007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Darren,&lt;/P&gt;&lt;P&gt;I tried to save each stats table with the drainline feature class that the stats was run on but I just kept overwriting the table. My workaround was to create a dictionary from the output tables and print the results in the Python Shell, which works for me for now. I put&amp;nbsp;the following code&amp;nbsp;after the last line of the code I first posted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# Create dictionary&lt;BR /&gt; d = {r[0]: r[1] for r in arcpy.da.SearchCursor(outStatsTable, fields)}&lt;BR /&gt; &lt;BR /&gt; for key, val in d.items():&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;print key,": ", val&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2017 22:04:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-append-summary-statistics-to-dbf-table/m-p/723348#M56007</guid>
      <dc:creator>Myla-RaeBaldwin</dc:creator>
      <dc:date>2017-12-21T22:04:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to append summary statistics to dbf table</title>
      <link>https://community.esri.com/t5/python-questions/how-to-append-summary-statistics-to-dbf-table/m-p/723349#M56008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure, there are lots of ways to do it. I was thinking just changing the output table name each time through, like below. Of course, you could substitute in your value for 'drainline' or whatever is most useful. Just so you realize the reason your table keeps getting overwritten is that if the name doesn't change, it overwrites the previous file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;outStatsTable &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"C:/_LOCALdata/AB_ARCHYDRO/AB_ARCHYDRO_NOP.GDB/DrainageDensity"&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; i &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; range&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;10&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;# numbers 0-9&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; outStatsTable &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; str&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;i&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

C&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;_LOCALdata&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;AB_ARCHYDRO&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;AB_ARCHYDRO_NOP&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;GDB&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;DrainageDensity0
C&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;_LOCALdata&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;AB_ARCHYDRO&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;AB_ARCHYDRO_NOP&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;GDB&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;DrainageDensity1
C&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;_LOCALdata&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;AB_ARCHYDRO&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;AB_ARCHYDRO_NOP&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;GDB&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;DrainageDensity2
C&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;_LOCALdata&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;AB_ARCHYDRO&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;AB_ARCHYDRO_NOP&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;GDB&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;DrainageDensity3
C&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;_LOCALdata&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;AB_ARCHYDRO&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;AB_ARCHYDRO_NOP&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;GDB&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;DrainageDensity4
C&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;_LOCALdata&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;AB_ARCHYDRO&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;AB_ARCHYDRO_NOP&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;GDB&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;DrainageDensity5
C&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;_LOCALdata&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;AB_ARCHYDRO&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;AB_ARCHYDRO_NOP&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;GDB&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;DrainageDensity6
C&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;_LOCALdata&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;AB_ARCHYDRO&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;AB_ARCHYDRO_NOP&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;GDB&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;DrainageDensity7
C&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;_LOCALdata&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;AB_ARCHYDRO&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;AB_ARCHYDRO_NOP&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;GDB&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;DrainageDensity8
C&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;_LOCALdata&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;AB_ARCHYDRO&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;AB_ARCHYDRO_NOP&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;GDB&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;DrainageDensity9‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&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;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 06:56:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-append-summary-statistics-to-dbf-table/m-p/723349#M56008</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2021-12-12T06:56:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to append summary statistics to dbf table</title>
      <link>https://community.esri.com/t5/python-questions/how-to-append-summary-statistics-to-dbf-table/m-p/723350#M56009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Darren! I figured out how to name each table with the name of the drainline so that the tables all had unique names and were not overwritten. Then I created a list of all the tables and used the Merge_management to merge all of them into one master table. Works perfectly and is exactly what I needed.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jan 2018 19:17:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-append-summary-statistics-to-dbf-table/m-p/723350#M56009</guid>
      <dc:creator>Myla-RaeBaldwin</dc:creator>
      <dc:date>2018-01-02T19:17:54Z</dc:date>
    </item>
  </channel>
</rss>

