What's the best way to export UTF8 data into Excel? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T15:13:31Z http://stackoverflow.com/feeds/question/451636 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/451636/whats-the-best-way-to-export-utf8-data-into-excel 2 What's the best way to export UTF8 data into Excel? Billy Gray 2009-01-16T19:30:27Z 2009-05-25T22:22:05Z <p>So we have this web app where we support UTF8 data. Hooray UTF8. And we can export the user-supplied data into CSV no problem - it's still in UTF8 at that point. The problem is when you open a typical UTF8 CSV up in Excel, it reads it as ANSII encoded text, and accordingly tries to read two-byte chars like ø and ü as two separate characters and you end up with fail.</p> <p>So I've done a bit of digging (the Intervals folks have a interesting post <a href="http://www.myintervals.com/forum/discussion/280/making-csv-data-exports-with-utf8-more-excel-friendly/" rel="nofollow">about it here</a>), and there are some limited if ridiculously annoying options out there. Among them:</p> <ul> <li>supplying a UTF-16 Little Endian TSV file which Excel will interpret correctly, but which won't support multi-line data</li> <li>supplying the data in an HTML table with an Excel mime-type or file extension (not sure if this option supports UTF8)</li> <li>there are some three or four ways to get XML data into the various recent versions of excel, and those would support UTF8, in theory. SpreadsheetML, using custom XSLT, or generating the new Excel XML format via templating.</li> </ul> <p>It looks like no matter what, I'm probably going to want to continue offering a plain-old CSV file for the folks who aren't using it for Excel anyway, and a separate download option for Excel. </p> <p>What's the simplest way of generating that Just-For-Excel file that will correctly support UTF8, my dear Stack Overflowers? If that simplest option only supports the latest version of Excel, that's still of interest.</p> <p>I'm doing this on a Rails stack, but curious how the .Net-ers and folks on any frameworks handle this. I work in a few different environments myself and this is definitely an issue that will becoming up again.</p> http://stackoverflow.com/questions/451636/whats-the-best-way-to-export-utf8-data-into-excel/451672#451672 3 Answer by Joel Coehoorn for What's the best way to export UTF8 data into Excel? Joel Coehoorn 2009-01-16T19:41:15Z 2009-01-16T19:41:15Z <p>You're forgetting creating an OleDB datasource and Excel Interop, but there are issues with those as well.</p> <p>I recommend the <a href="http://msdn.microsoft.com/en-us/library/bb226687.aspx" rel="nofollow">SpreadsheetML</a> option. It works pretty well, odds are your platform has some decent tools for building xml files, and it's fully supported as far back as OfficeXP. Office2000 is not supported, but personal experience is that it works in a limited way.</p> http://stackoverflow.com/questions/451636/whats-the-best-way-to-export-utf8-data-into-excel/451715#451715 0 Answer by Rulas for What's the best way to export UTF8 data into Excel? Rulas 2009-01-16T19:51:00Z 2009-01-16T19:51:00Z <p>If you create an XML with utf encoding and save it as a .xls it will open even those two-byte chars:</p> <p>xml version="1.0" encoding="utf-8"</p> http://stackoverflow.com/questions/451636/whats-the-best-way-to-export-utf8-data-into-excel/620612#620612 1 Answer by Larry K for What's the best way to export UTF8 data into Excel? Larry K 2009-03-06T22:08:02Z 2009-03-06T22:08:02Z <p>I had the exact same issue of sending UTF8 data to Excel. My solution:</p> <p>The current version of the Perl Spreadsheet::WriteExcel cpan code correctly writes Excel files using UTF8 data.</p> <p>So I wrote a Rails plugin that a) opens a two-way pipe to a perl program b) sends the data, a row at a time, to the perl program. I use Yaml as the message data format. (Standard Ruby yaml is not UTF8, there's a special version available, ya2yaml) c) The perl program creates the excel file d) When the Rails program indicates (via a yaml message) that the last row has been sent, the perl program creates the excel file and sends the status back to the rails program.</p> <p>Of course, adding a perl program to a rails project via a parallel process and a pipe is very much in the "Engineering" spectrum rather than "Computer Science." (It gets the job done but is not elegant.) But it does work well and saved me the weeks it would take to port the WriteExcel code to Ruby. Also note that the currently available Ruby port of WriteExcel does not handle utf8. </p> <p>My sw is permissive open source but I haven't gotten around to releasing it yet. If you want it in its current state, see <a href="http://sandbox.kluger.com/write_excel_v.5.tar" rel="nofollow">http://sandbox.kluger.com/write_excel_v.5.tar</a></p> <p>Note that you'll want to create your excel files in a background process, not in the process of the Rails controller since that would block other browser clients as you grind away producing the excel file. I use DelayedJob plugin, works well.</p> <p>Hope this helps,</p> <p>Larry</p> http://stackoverflow.com/questions/451636/whats-the-best-way-to-export-utf8-data-into-excel/908245#908245 0 Answer by randy for What's the best way to export UTF8 data into Excel? randy 2009-05-25T22:22:05Z 2009-05-25T22:22:05Z <p>Try OpenOffice Calc - it's much more Unicode friendly - both Importing and Exporting CSV files with UTF-8 encoding.</p>