<?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: Create a new table out of listed tables including a section in Python Snippets Questions</title>
    <link>https://community.esri.com/t5/python-snippets-questions/create-a-new-table-out-of-listed-tables-including/m-p/766809#M93</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/55033"&gt;Riyas Deen&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt; Hi Riyas Deen,&lt;/P&gt;&lt;P&gt;Thank you for your answer. It tried it but the huge problem is that the combi is still getting lost. To test is I just copied the selection of one table to the new table. I’m really desperate because I don’t know the way to select the first lines and fill them to one big table without losing the combi. And the Combi-field is now a string why is the combi lost?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fc_tables = arcpy.ListTables("*sort_sort*")&lt;/P&gt;&lt;P&gt;for tableR in fc_tables:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; tableresultName = os.path.splitext (tableR) [0]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print tableresultName&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.MakeTableView_management(env.workspace+ "\\" +tableR, "tableR_ly")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.SelectLayerByAttribute_management("tableR_ly", "NEW_SELECTION",""""OID" &amp;lt; 4""")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; tablename = tableresultName + "selc.dbf"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.CreateTable_management (env.workspace, tablename, tableR)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.CopyRows_management("tableR_ly", tablename)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="immer noch scheiße.PNG" class="jive-image image-1" src="/legacyfs/online/18740_immer noch scheiße.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Oct 2014 09:54:15 GMT</pubDate>
    <dc:creator>JuttaSchiller</dc:creator>
    <dc:date>2014-10-08T09:54:15Z</dc:date>
    <item>
      <title>Create a new table out of listed tables including a section</title>
      <link>https://community.esri.com/t5/python-snippets-questions/create-a-new-table-out-of-listed-tables-including/m-p/766807#M91</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; I have around 30 tables like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="result_ohne_loop.PNG" class="jive-image image-1" src="https://community.esri.com/legacyfs/online/18548_result_ohne_loop.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I have to get one big table out of them, but only for the first four lines of each table. &lt;/P&gt;&lt;P&gt;First I tried it with this code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14126861062101392" jivemacro_uid="_14126861062101392"&gt;
&lt;P&gt;resulttxt = newpath + "\\" + "resultSUM.txt"&lt;/P&gt;
&lt;P&gt;f = open (resulttxt, 'w')&lt;/P&gt;
&lt;OL style="list-style-type: lower-alpha;"&gt;
&lt;LI&gt;f.write ("Combi,FREQUENCY,SUM_PERCEN,SUM_SUM_ar,NAME,CODE,\n")&lt;/LI&gt;
&lt;LI&gt;f.close ()&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;f = open (resulttxt, 'a')&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;fc_tables = arcpy.ListTables("*sort_sort*")&lt;/P&gt;
&lt;P&gt;for tableR in fc_tables:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; fieldsSe= ["Combi","FREQUENCY" ,"SUM_PERCEN" ,"SUM_SUM_ar", "NAME", "CODE"]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; with arcpy.da.SearchCursor(tableR, fieldsSe, """"OID" &amp;lt; 4""") as sCursor:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for row in sCursor:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print row [0], row [1],row [2],row [3],row [4],row [5]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; f.write(str(row[0]) + "," + str(row[1])+ "," +str(row[2]) + "," + str(row[3])+ "," +str(row[4])+ "," +str(row[5]) + "\n")&lt;/P&gt;
&lt;OL style="list-style-type: lower-alpha;"&gt;
&lt;LI&gt;f.close()&lt;/LI&gt;
&lt;/OL&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem with this code is that the field “Combi” of the “resulttxt” has the type “double” therefore it does not fill the combinations in the right way, because the combinations are originally in a “text “-field (see the first table).&lt;/P&gt;&lt;P&gt;This is the result from the code with open():&lt;/P&gt;&lt;P&gt;&lt;IMG alt="result_combi_F.PNG" class="jive-image image-2" src="https://community.esri.com/legacyfs/online/18549_result_combi_F.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because of this I tried the tool "merge" with the following code:&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14126863248678477" jivemacro_uid="_14126863248678477"&gt;
&lt;P&gt;import arcpy&lt;/P&gt;
&lt;P&gt;import os, sys&lt;/P&gt;
&lt;P&gt;from arcpy import env&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;OL style="list-style-type: lower-alpha;"&gt;
&lt;LI&gt;env.overwriteOutput = True&lt;/LI&gt;
&lt;LI&gt;env.workspace = r"D:\Users\julia\erste_aufg\cities_UA"&lt;/LI&gt;
&lt;LI&gt;env.qualifiedFieldNames = False&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;resulttxt = r"D:\Users\julia\erste_aufg\cities_UA\resultfolder"+&amp;nbsp; "\\" +"4resultSUM.txt"&lt;/P&gt;
&lt;P&gt;fc_tables = arcpy.ListTables("*sort_sort*")&lt;/P&gt;
&lt;P&gt;for tableR in fc_tables:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; tableresultName = os.path.splitext (tableR) [0]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print tableresultName&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Merge_management(fc_tables, resulttxt)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The new table looks like this:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="fast_richtig.PNG" class="jive-image image-3" src="https://community.esri.com/legacyfs/online/18554_fast_richtig.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is exactly what I need, but how can I do this for the selection of just the first four lines? Now it gives me all (10) back.&amp;nbsp; Does someone has an idea?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Oct 2014 12:56:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-snippets-questions/create-a-new-table-out-of-listed-tables-including/m-p/766807#M91</guid>
      <dc:creator>JuttaSchiller</dc:creator>
      <dc:date>2014-10-07T12:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: Create a new table out of listed tables including a section</title>
      <link>https://community.esri.com/t5/python-snippets-questions/create-a-new-table-out-of-listed-tables-including/m-p/766808#M92</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jutta,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create an empty table with your target schema.&lt;/P&gt;&lt;P&gt;In your for loop,&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Create a table view with your table &lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#/Make_Table_View/00170000006v000000/" title="http://resources.arcgis.com/en/help/main/10.1/index.html#/Make_Table_View/00170000006v000000/"&gt;ArcGIS Help 10.1&lt;/A&gt; &lt;/LI&gt;&lt;LI&gt;Then do a select by attribute where OID &amp;lt; 4 &lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#/Select_Layer_By_Attribute/001700000071000000/" title="http://resources.arcgis.com/en/help/main/10.2/index.html#/Select_Layer_By_Attribute/001700000071000000/"&gt;ArcGIS Help (10.2, 10.2.1, and 10.2.2)&lt;/A&gt; &lt;/LI&gt;&lt;LI&gt;Append the table view to your empty table.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If creating an empty table is not an option where you don't know the schema before hand. Instead of step 2 above, follow below:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Create an empty array outside the for loop and populate the array with your table views after selection.&lt;/LI&gt;&lt;LI&gt;Use the array as input for your merge, do this outside the loop, (In your above code you are doing merge within the loop, which will essentially result in your target table overwritten many times)&lt;/LI&gt;&lt;/OL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2014 01:18:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-snippets-questions/create-a-new-table-out-of-listed-tables-including/m-p/766808#M92</guid>
      <dc:creator>RiyasDeen</dc:creator>
      <dc:date>2014-10-08T01:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: Create a new table out of listed tables including a section</title>
      <link>https://community.esri.com/t5/python-snippets-questions/create-a-new-table-out-of-listed-tables-including/m-p/766809#M93</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/55033"&gt;Riyas Deen&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt; Hi Riyas Deen,&lt;/P&gt;&lt;P&gt;Thank you for your answer. It tried it but the huge problem is that the combi is still getting lost. To test is I just copied the selection of one table to the new table. I’m really desperate because I don’t know the way to select the first lines and fill them to one big table without losing the combi. And the Combi-field is now a string why is the combi lost?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fc_tables = arcpy.ListTables("*sort_sort*")&lt;/P&gt;&lt;P&gt;for tableR in fc_tables:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; tableresultName = os.path.splitext (tableR) [0]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print tableresultName&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.MakeTableView_management(env.workspace+ "\\" +tableR, "tableR_ly")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.SelectLayerByAttribute_management("tableR_ly", "NEW_SELECTION",""""OID" &amp;lt; 4""")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; tablename = tableresultName + "selc.dbf"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.CreateTable_management (env.workspace, tablename, tableR)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.CopyRows_management("tableR_ly", tablename)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="immer noch scheiße.PNG" class="jive-image image-1" src="/legacyfs/online/18740_immer noch scheiße.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2014 09:54:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-snippets-questions/create-a-new-table-out-of-listed-tables-including/m-p/766809#M93</guid>
      <dc:creator>JuttaSchiller</dc:creator>
      <dc:date>2014-10-08T09:54:15Z</dc:date>
    </item>
    <item>
      <title>Re: Create a new table out of listed tables including a section</title>
      <link>https://community.esri.com/t5/python-snippets-questions/create-a-new-table-out-of-listed-tables-including/m-p/766810#M94</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jutta,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try below script. This selects rows in a table and uses the selection to perform merge. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14127653469252566 jive_text_macro" jivemacro_uid="_14127653469252566"&gt;
&lt;P&gt;import arcpy&amp;nbsp; &lt;/P&gt;
&lt;P&gt;import os, sys&amp;nbsp; &lt;/P&gt;
&lt;P&gt;from arcpy import env&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;env.overwriteOutput = True&amp;nbsp; &lt;/P&gt;
&lt;P&gt;env.workspace = r"C:\tempdelete\PL_TO_LINE.gdb"&amp;nbsp; # Set your workspace&lt;/P&gt;
&lt;P&gt;env.qualifiedFieldNames = False&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;resulttxt = r"C:\tempdelete\4resultSUM.dbf" # Set your output&lt;/P&gt;
&lt;P&gt;fc_tables = arcpy.ListTables("") # Set your filter here&lt;/P&gt;
&lt;P&gt;tableViews = []&lt;/P&gt;
&lt;P&gt;for tableR in fc_tables:&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; #tableresultName = os.path.splitext (tableR) [0]&lt;/P&gt;
&lt;P&gt;&amp;nbsp; arcpy.AddMessage(tableR)&lt;/P&gt;
&lt;P&gt;&amp;nbsp; tableView = tableR + "_View"&lt;/P&gt;
&lt;P&gt;&amp;nbsp; arcpy.MakeTableView_management(tableR, tableView)&lt;/P&gt;
&lt;P&gt;&amp;nbsp; arcpy.SelectLayerByAttribute_management(tableView, "NEW_SELECTION","OBJECTID &amp;lt; 4") # Set your where clause here&lt;/P&gt;
&lt;P&gt;&amp;nbsp; tableViews.append(tableView)&lt;/P&gt;
&lt;P&gt;&amp;nbsp; arcpy.AddMessage(len(tableViews))&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;arcpy.Merge_management(tableViews, resulttxt)&amp;nbsp; &lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2014 10:50:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-snippets-questions/create-a-new-table-out-of-listed-tables-including/m-p/766810#M94</guid>
      <dc:creator>RiyasDeen</dc:creator>
      <dc:date>2014-10-08T10:50:22Z</dc:date>
    </item>
    <item>
      <title>Re: Create a new table out of listed tables including a section</title>
      <link>https://community.esri.com/t5/python-snippets-questions/create-a-new-table-out-of-listed-tables-including/m-p/766811#M95</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/55033"&gt;Riyas Deen&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I’m so sorry but it is still the same problem but thanks for your help. This is what I was running:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import arcpy&lt;/P&gt;&lt;P&gt;import os, sys&lt;/P&gt;&lt;P&gt;from arcpy import env&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;env.overwriteOutput = True&lt;/P&gt;&lt;P&gt;env.workspace = r"D:\Users\julia\erste_aufg\cities_UA"&lt;/P&gt;&lt;P&gt;env.qualifiedFieldNames = False&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;resulttxt = env.workspace + "\\" + "outFINAL.dbf"# Set your output&amp;nbsp; &lt;/P&gt;&lt;P&gt;fc_tables = arcpy.ListTables("*sort_sorted3.dbf") # Set your filter here&amp;nbsp; &lt;/P&gt;&lt;P&gt;tableViews = []&amp;nbsp; &lt;/P&gt;&lt;P&gt;for tableR in fc_tables:&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; #tableresultName = os.path.splitext (tableR) [0]&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; arcpy.AddMessage(tableR)&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; tableView = tableR + "_View"&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; arcpy.MakeTableView_management(tableR, tableView)&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; arcpy.SelectLayerByAttribute_management(tableView, "NEW_SELECTION",""""OID" &amp;lt; 4""") # Set your where clause here&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; tableViews.append(tableView)&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; arcpy.AddMessage(len(tableViews))&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;arcpy.Merge_management(tableViews, resulttxt)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="und immer noch.PNG" class="jive-image image-1" src="/legacyfs/online/18741_und immer noch.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2014 11:57:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-snippets-questions/create-a-new-table-out-of-listed-tables-including/m-p/766811#M95</guid>
      <dc:creator>JuttaSchiller</dc:creator>
      <dc:date>2014-10-08T11:57:10Z</dc:date>
    </item>
    <item>
      <title>Re: Create a new table out of listed tables including a section</title>
      <link>https://community.esri.com/t5/python-snippets-questions/create-a-new-table-out-of-listed-tables-including/m-p/766812#M96</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jutta,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My understanding was, you wanted to select first 4 rows in all the tables listed from your workspace and merge these rows into a separate table right? I tested the code and it does exactly that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can't access my ArcGIS box now to double check, my suspicion is on your where clause, can you change it to just &lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; font-size: 13.3333339691162px; background-color: #f3f3f3;"&gt;&lt;STRONG&gt;arcpy.SelectLayerByAttribute_management(tableView, "NEW_SELECTION","OID &amp;lt; 4")&lt;/STRONG&gt; removing the extra double quotes.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2014 12:15:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-snippets-questions/create-a-new-table-out-of-listed-tables-including/m-p/766812#M96</guid>
      <dc:creator>RiyasDeen</dc:creator>
      <dc:date>2014-10-08T12:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: Create a new table out of listed tables including a section</title>
      <link>https://community.esri.com/t5/python-snippets-questions/create-a-new-table-out-of-listed-tables-including/m-p/766813#M97</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; &lt;A href="https://community.esri.com/migrated-users/55033"&gt;Riyas Deen&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;Ok, I did a very stupid mistake: If I only select 4 lines it is not possible to get a combi with more than one number, because there is no combination. Doing the selection for more lines it works perfectly. I’m so sorry. And thanks a lot for your help! &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2014 12:59:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-snippets-questions/create-a-new-table-out-of-listed-tables-including/m-p/766813#M97</guid>
      <dc:creator>JuttaSchiller</dc:creator>
      <dc:date>2014-10-08T12:59:35Z</dc:date>
    </item>
  </channel>
</rss>

