<?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: When will Table to Table support .xlsx files? in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708708#M40155</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not out of the box, but they do exist&lt;/P&gt;&lt;P&gt; &lt;A href="https://pypi.python.org/pypi/XlsxWriter" title="https://pypi.python.org/pypi/XlsxWriter"&gt;XlsxWriter 0.8.5 : Python Package Index&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;A href="https://openpyxl.readthedocs.org/en/default/" title="https://openpyxl.readthedocs.org/en/default/"&gt;openpyxl - A Python library to read/write Excel 2010 xlsx/xlsm files — openpyxl 2.3.5 documentation&lt;/A&gt; &lt;/P&gt;&lt;P&gt;plus there are a couple of branches on github&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 23 Apr 2016 15:52:43 GMT</pubDate>
    <dc:creator>DanPatterson_Retired</dc:creator>
    <dc:date>2016-04-23T15:52:43Z</dc:date>
    <item>
      <title>When will Table to Table support .xlsx files?</title>
      <link>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708702#M40149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Is there any plan for exporting tables in ArcCatalog from .xlsx files? .xls still work fine. It just slows everything down and not sure how to avoid doing it manually by integrating it with my Python scripts. I wish Microsoft didn't get rid of save to .dbf in Excel. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;PS I know GIS data should be in databases not in spreadsheets but so much source data comes in excel.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Jan 2011 20:24:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708702#M40149</guid>
      <dc:creator>DanielSheehan</dc:creator>
      <dc:date>2011-01-27T20:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: When will Table to Table support .xlsx files?</title>
      <link>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708703#M40150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's a shame that in 2016 ArcGIS cannot export a table to xlsx dirrectly!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Apr 2016 19:42:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708703#M40150</guid>
      <dc:creator>MaximeDemers</dc:creator>
      <dc:date>2016-04-22T19:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: When will Table to Table support .xlsx files?</title>
      <link>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708704#M40151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure if this is the type of answer you're looking for, but since you're already using Python scripts...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://pypi.python.org/pypi/XlsxWriter#downloads" title="https://pypi.python.org/pypi/XlsxWriter#downloads" rel="nofollow noopener noreferrer" target="_blank"&gt;XlsxWriter 0.8.5 : Python Package Index&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; import xlsxwriter # import library
... fc = 'points' # feature class/layer
... workbook = xlsxwriter.Workbook('C:\junk\my_new_workbook.xlsx') # new workbook
... worksheet = workbook.add_worksheet() # create worksheet
... fieldnames = [i.name for i in arcpy.ListFields(fc)] # list fields in fc
... for field,fieldname in enumerate(fieldnames): 
...&amp;nbsp;&amp;nbsp;&amp;nbsp; worksheet.write(0,field,fieldname) # write field names to xlsx
... with arcpy.da.SearchCursor(fc,'*') as cursor: # loop through features
...&amp;nbsp;&amp;nbsp;&amp;nbsp; for row,row_val in enumerate(cursor): # loop through rows
...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for col,col_val in enumerate(row_val): # loop through columns
...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; try:
...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; worksheet.write(row+1,col,col_val) # if text or number, write value
...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; except:
...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; worksheet.write(row+1,col,repr(col_val)) # if something else (like a shape) write the representation
... workbook.close() # close the workbook&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="195981" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/195981_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;edit: just realized the original post was made 5 years ago, so it's possible that xlsxwriter didn't exist then, but it does now! &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 05:46:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708704#M40151</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2021-12-12T05:46:17Z</dc:date>
    </item>
    <item>
      <title>Re: When will Table to Table support .xlsx files?</title>
      <link>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708705#M40152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think that it is the Friday afternoon migratory ghosts Darren...this isn't only only old post to come through&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Apr 2016 21:35:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708705#M40152</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-04-22T21:35:39Z</dc:date>
    </item>
    <item>
      <title>Re: When will Table to Table support .xlsx files?</title>
      <link>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708706#M40153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also, Esri has shipped tools to read and write Excel files. (They use Python modules that are shipped with ArcGIS.)&lt;/P&gt;&lt;P&gt;Here's the current story on Excel support in the help.&lt;/P&gt;&lt;P&gt;&lt;A href="http://desktop.arcgis.com/en/arcmap/10.3/manage-data/tables/understanding-how-to-use-microsoft-excel-files-in-arcgis.htm" title="http://desktop.arcgis.com/en/arcmap/10.3/manage-data/tables/understanding-how-to-use-microsoft-excel-files-in-arcgis.htm"&gt;Understanding how to use Microsoft Excel files in ArcGIS—Help | ArcGIS for Desktop&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Apr 2016 02:24:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708706#M40153</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2016-04-23T02:24:37Z</dc:date>
    </item>
    <item>
      <title>Re: When will Table to Table support .xlsx files?</title>
      <link>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708707#M40154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But they only write to xls, not xlsx, as far as I know. Is there a method to write to xlsx out of the box?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Apr 2016 15:16:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708707#M40154</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2016-04-23T15:16:33Z</dc:date>
    </item>
    <item>
      <title>Re: When will Table to Table support .xlsx files?</title>
      <link>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708708#M40155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not out of the box, but they do exist&lt;/P&gt;&lt;P&gt; &lt;A href="https://pypi.python.org/pypi/XlsxWriter" title="https://pypi.python.org/pypi/XlsxWriter"&gt;XlsxWriter 0.8.5 : Python Package Index&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;A href="https://openpyxl.readthedocs.org/en/default/" title="https://openpyxl.readthedocs.org/en/default/"&gt;openpyxl - A Python library to read/write Excel 2010 xlsx/xlsm files — openpyxl 2.3.5 documentation&lt;/A&gt; &lt;/P&gt;&lt;P&gt;plus there are a couple of branches on github&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Apr 2016 15:52:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708708#M40155</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-04-23T15:52:43Z</dc:date>
    </item>
    <item>
      <title>Re: When will Table to Table support .xlsx files?</title>
      <link>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708709#M40156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Okay, we're starting to circle (see my previous example). Meeting adjourned. &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Apr 2016 16:55:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708709#M40156</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2016-04-23T16:55:10Z</dc:date>
    </item>
    <item>
      <title>Re: When will Table to Table support .xlsx files?</title>
      <link>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708710#M40157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;grief... great minds think ... then there are the rest of us, time to change the bifocals&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Apr 2016 16:57:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708710#M40157</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-04-23T16:57:07Z</dc:date>
    </item>
    <item>
      <title>Re: When will Table to Table support .xlsx files?</title>
      <link>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708711#M40158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dan, this is interesting. How often do these 'ghosts' practice their migrating? Is this why we see old stuff get bumped a lot?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Apr 2016 01:55:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708711#M40158</guid>
      <dc:creator>AdrianWelsh</dc:creator>
      <dc:date>2016-04-24T01:55:55Z</dc:date>
    </item>
    <item>
      <title>Re: When will Table to Table support .xlsx files?</title>
      <link>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708712#M40159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cleanup is done by us moderators during downtime ... which varies according to traffic and who is awake. &lt;/P&gt;&lt;P&gt;Old threads can get bumped when the poster makes an edit, a moderator changes a question to a discussion or when someone marks a question answered, or... when someone answers an old question that gets bumped then realizes the thread is many years old. &lt;/P&gt;&lt;P&gt;This gives others the opportunity to recommend options that someone else already posted since the order of threads in the mailbox is not in chronological order...ergo my response to Darren's missive. &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/silly.png" /&gt;&lt;/P&gt;&lt;P&gt;Pretty well sums it up... On the upside, the original poster's email will be flooded with new traffic for something long forgotten...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS moving to &lt;A href="https://community.esri.com/space/2050"&gt;Managing Data&lt;/A&gt;​ since the generic GIS category is too generic&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Apr 2016 02:16:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708712#M40159</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-04-24T02:16:45Z</dc:date>
    </item>
    <item>
      <title>Re: When will Table to Table support .xlsx files?</title>
      <link>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708713#M40160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This makes sense. So it's safe to say that these 'ghosts' are just the moderators moderating? I am guessing there is no automatic migration that is making old threads get bumped?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Apr 2016 22:34:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708713#M40160</guid>
      <dc:creator>AdrianWelsh</dc:creator>
      <dc:date>2016-04-24T22:34:29Z</dc:date>
    </item>
    <item>
      <title>Re: When will Table to Table support .xlsx files?</title>
      <link>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708714#M40161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not automatically... just automagically&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Apr 2016 22:55:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708714#M40161</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-04-24T22:55:48Z</dc:date>
    </item>
    <item>
      <title>Re: When will Table to Table support .xlsx files?</title>
      <link>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708715#M40162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I try to avoid .xlsx for data unless I really need functionality like big worksheets. If your datasets are that big, you probably should be using a database anyway! &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Apr 2016 03:26:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708715#M40162</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2016-04-28T03:26:05Z</dc:date>
    </item>
    <item>
      <title>Re: When will Table to Table support .xlsx files?</title>
      <link>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708716#M40163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Data Interoperability extension will write XLSX.&lt;/P&gt;&lt;P&gt;Of course it has a cost.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Apr 2016 18:21:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/when-will-table-to-table-support-xlsx-files/m-p/708716#M40163</guid>
      <dc:creator>BruceHarold</dc:creator>
      <dc:date>2016-04-28T18:21:02Z</dc:date>
    </item>
  </channel>
</rss>

