What's the best .NET library for parsing and generating Excel spreadsheets? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T21:00:48Zhttp://stackoverflow.com/feeds/question/170652http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/170652/whats-the-best-net-library-for-parsing-and-generating-excel-spreadsheets7What's the best .NET library for parsing and generating Excel spreadsheets?Ricardo Cabral2008-10-04T17:07:13Z2009-12-08T12:15:12Z
<p>Open-source or not. What's your experience using it? How's the learning curve?</p>
http://stackoverflow.com/questions/170652/whats-the-best-net-library-for-parsing-and-generating-excel-spreadsheets/170656#1706560Answer by mattruma for What's the best .NET library for parsing and generating Excel spreadsheets?mattruma2008-10-04T17:09:08Z2008-10-04T18:08:08Z<p>You could just hook into the Excel object library and manipulate the excel spreadsheet right through the object model.</p>
http://stackoverflow.com/questions/170652/whats-the-best-net-library-for-parsing-and-generating-excel-spreadsheets/170673#1706734Answer by AlexCuse for What's the best .NET library for parsing and generating Excel spreadsheets?AlexCuse2008-10-04T17:15:35Z2008-10-04T17:15:35Z<p>If you don't need native excel spreadsheets, you can use a tool like <a href="http://www.carlosag.net/Tools/ExcelXmlWriter/" rel="nofollow">Carlos Aguilar Mares ExcelXMLWriter</a>. This has a fairly easy to understand object model, and is MUCH faster than using the Excel COM objects. There is also no dependency on Excel being installed on the machine, and you don't need to worry about marshalling and all that. </p>
http://stackoverflow.com/questions/170652/whats-the-best-net-library-for-parsing-and-generating-excel-spreadsheets/170691#1706910Answer by RTipton for What's the best .NET library for parsing and generating Excel spreadsheets?RTipton2008-10-04T17:22:58Z2008-10-04T17:22:58Z<p>We use Essential XLSIO from SyncFusion. It is not free, but it has worked well. </p>
<p><a href="http://is.gd/3wpG" rel="nofollow">http://is.gd/3wpG</a></p>
http://stackoverflow.com/questions/170652/whats-the-best-net-library-for-parsing-and-generating-excel-spreadsheets/170694#1706942Answer by GvS for What's the best .NET library for parsing and generating Excel spreadsheets?GvS2008-10-04T17:23:34Z2008-10-04T17:29:19Z<p>For parsing an Excel file, Excel itself is the best. It has a great object Model you can access via a COM interface. </p>
<p>For creating Excel, you can also use Excel, Or just create HTML or CSV file. This depends on your needs.</p>
<p>Excel is a bit heavy (read bad performande and memory consumption) for using it in a ASP.Net environment. If you need it for a desktop application however, you should use Excel itself. I'm doing this myself, and have found only minor troubles. It's very well documented on the MSDN site.</p>
http://stackoverflow.com/questions/170652/whats-the-best-net-library-for-parsing-and-generating-excel-spreadsheets/170706#1707061Answer by massimogentilini for What's the best .NET library for parsing and generating Excel spreadsheets?massimogentilini2008-10-04T17:29:25Z2008-10-04T17:29:25Z<p>I second CarlosAG library, it's very easy to use and perform pretty well, with the added benefit that can also be used to generate Excel files from web applications without the need to install Excel on the server and without the problems of using Excel on servers.<br/>
If you are using just client application directly interacting with Excel using the Primary Interop Assemblies is easy, but you need Excel to be installed on client machines.</p>
http://stackoverflow.com/questions/170652/whats-the-best-net-library-for-parsing-and-generating-excel-spreadsheets/170727#1707270Answer by Tom Pester for What's the best .NET library for parsing and generating Excel spreadsheets?Tom Pester2008-10-04T17:39:14Z2008-10-04T17:39:14Z<p>Aspose.cells met my requirments every time. Its not open source but the support is great. If you need a function they will either implement it or give you a straight answer. Excel 2007 is fully supported.</p>
http://stackoverflow.com/questions/170652/whats-the-best-net-library-for-parsing-and-generating-excel-spreadsheets/170769#1707697Answer by Sam for What's the best .NET library for parsing and generating Excel spreadsheets?Sam2008-10-04T18:04:28Z2008-10-04T18:04:28Z<p>I've tried a couple, and summarised my thoughts in a <a href="http://blog.functionalfun.net/2008/08/which-net-excel-io-component-should-i.html" rel="nofollow">blog post</a>. XlsIO is mostly OK, but can be pretty frustrating at times. SpreadsheetGear is probably the nicest, and the fastest, but also the most expensive.</p>
http://stackoverflow.com/questions/170652/whats-the-best-net-library-for-parsing-and-generating-excel-spreadsheets/170784#1707843Answer by Pittsburgh DBA for What's the best .NET library for parsing and generating Excel spreadsheets?Pittsburgh DBA2008-10-04T18:13:22Z2008-10-04T18:13:22Z<p>I really like FlexCel from TMS Software. One of its best features is the huge volume of sample applications that ship with it. It even has a tool that will take an existing spreadsheet and show you the exact code needed to create it. I have used it successfully, and it also does not require Excel to be installed on the target machine. This makes it great for servers.</p>
<p><a href="http://www.tmssoftware.com/site/flexcel.asp" rel="nofollow">FlexCel from TMS Software</a></p>
http://stackoverflow.com/questions/170652/whats-the-best-net-library-for-parsing-and-generating-excel-spreadsheets/170996#1709961Answer by matdumsa for What's the best .NET library for parsing and generating Excel spreadsheets?matdumsa2008-10-04T21:03:58Z2008-10-04T21:03:58Z<p>I often found that when a client want the app to be "excel-enabled" he often just want to see a little excel button in a table/chart that will bring the data for him in "excel" without the tedious cut&paste procedure :P</p>
<p>Sending the same HTML table back to the browser with a content-type of vnd-excel do the trick. Server returns plain HTML tagged as EXCEL document. OS fires up EXCEL with that document. Excel interpret the HTML and transform it into the spreadsheet you are looking for... Of course it doesn't work if you want to have any of excel's many objects (graph, pivot, formula, filter for example) but still it could be useful.</p>
<p>Here is an example of how-to do it in classic-asp:</p>
<pre><code>Response.ContentType = "application/vnd.ms-excel"
</code></pre>
http://stackoverflow.com/questions/170652/whats-the-best-net-library-for-parsing-and-generating-excel-spreadsheets/171004#1710042Answer by David Robbins for What's the best .NET library for parsing and generating Excel spreadsheets?David Robbins2008-10-04T21:10:20Z2008-10-04T21:10:20Z<p>Give <a href="http://www.spreadsheetgear.com" rel="nofollow">Spreadsheet Gear</a> a try. It can read and write formulas and macros of a spreadsheet. No Excel is required for execution. The website has some good samples on it. The API is well documented and we had an app completed within a few days. It's a very nice tool and worth the $$.</p>
http://stackoverflow.com/questions/170652/whats-the-best-net-library-for-parsing-and-generating-excel-spreadsheets/999475#9994750Answer by liya for What's the best .NET library for parsing and generating Excel spreadsheets?liya2009-06-16T03:43:38Z2009-06-16T03:43:38Z<p>SmartXLS is also a good choice.It support most features of excel like Charts,formulas, and the excel2007 format.
<a href="http://www.smartxls.com" rel="nofollow">SmartXLS for .net(java)</a></p>
http://stackoverflow.com/questions/170652/whats-the-best-net-library-for-parsing-and-generating-excel-spreadsheets/1572815#15728150Answer by unknown (google) for What's the best .NET library for parsing and generating Excel spreadsheets?unknown (google)2009-10-15T14:39:49Z2009-10-15T14:39:49Z<p>I think <a href="http://www.gemboxsoftware.com/GBSpreadsheet.htm" rel="nofollow">Gembox.Spreadsheet</a> is very good component to read and write Excel spreadsheets in variety of formats (XLS, XLSX, ODS, CSV, HTML). It is also very fast and easy to use. They provided huge number of examples.</p>
http://stackoverflow.com/questions/170652/whats-the-best-net-library-for-parsing-and-generating-excel-spreadsheets/1627722#16277220Answer by JTtheGeek for What's the best .NET library for parsing and generating Excel spreadsheets?JTtheGeek2009-10-26T22:34:44Z2009-10-26T22:34:44Z<p>I would definitely stay away from using Excel Automation / Object library if you can. I used it in a small application hosting maybe 10 concurrent users at a time for over 2 years and constantly had annoying setup issues on the servers, working with the DComConfig, installing office on my production servers, and weird issues that would need me to restart the server periodically. That and its very slow. So far SpreadSheet gear definitely seems to be the best solution for a robust and efficient well documented solution. But it does cost $1000. Another easy way is to use the OpenXML library, create template of what you want, and just modify the data with that library. </p>
http://stackoverflow.com/questions/170652/whats-the-best-net-library-for-parsing-and-generating-excel-spreadsheets/1866588#18665880Answer by Leniel Macaferi for What's the best .NET library for parsing and generating Excel spreadsheets?Leniel Macaferi2009-12-08T12:15:12Z2009-12-08T12:15:12Z<p>I've used with success the following open source projects:</p>
<ul>
<li><p>ExcelPackage for OOXML formats (Office 2007)</p></li>
<li><p>NPOI for .XLS format (Office 2003)</p></li>
</ul>
<p>Take a look at my blog posts:</p>
<p><a href="http://www.leniel.net/2009/07/creating-excel-spreadsheets-xls-xlsx-c.html" rel="nofollow">Creating Excel spreadsheets .XLS and .XLSX in C#</a></p>
<p><a href="http://www.leniel.net/2009/10/npoi-with-excel-table-and-dynamic-chart.html" rel="nofollow">NPOI with Excel Table and dynamic Chart</a></p>