Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Open-source or not. What's your experience using it? How's the learning curve?

share|improve this question

closed as not constructive by Kev Sep 27 '12 at 0:39

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

19 Answers

up vote 7 down vote accepted

For parsing an Excel file, Excel itself is the best. It has a great object Model you can access via a COM interface.

For creating Excel, you can also use Excel, Or just create HTML or CSV file. This depends on your needs.

Excel is a bit heavy (read bad performance 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.

share|improve this answer
43  
The offramp to programming hell is marked "Excel COM object model." – rp. Feb 3 '10 at 23:21
The richness of the Excel API can be a bit overwhelming. But you can easily "record" a big part of your logic first, this makes it more easy. – GvS Feb 4 '10 at 10:11
4  
@rp, "Excel Component Object Model object model"? – Petey B Sep 7 '10 at 19:25
10  
Worth thinking about when using the Excel API is that the target machine needs to have Excel installed, which is often not an option. After some digging I found this: epplus.codeplex.com/wikipage?title=Screenshoots Seems to be relatively active as well, in comparison to most other OS alternatives. – Robin Feb 10 '11 at 14:40
2  
@Robin: EPPlus was not available when answering this question. I currently use EPPlus on the server, and Excel on the client. – GvS Feb 10 '11 at 16:41
show 1 more comment

I've tried a couple, and summarised my thoughts in a blog post. XlsIO is mostly OK, but can be pretty frustrating at times. SpreadsheetGear is probably the nicest, and the fastest, but also the most expensive.

share|improve this answer

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

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.

Here is an example of how-to do it in classic-asp:

Response.ContentType = "application/vnd.ms-excel"
share|improve this answer
good point -for simple export data as a table solutions, this works well. – Anonymous Type Mar 8 '10 at 6:04
Interesting approach, do you know any tricks with this method for a tabbed stylesheet? – Burnzy Jun 14 '12 at 12:07

I've used with success the following open source projects:

  • ExcelPackage for OOXML formats (Office 2007)

  • NPOI for .XLS format (Office 2003)

Take a look at these links for more info:

Create Excel (.XLS and .XLSX) file from C#

Creating Excel spreadsheets .XLS and .XLSX in C#

NPOI with Excel Table and dynamic Chart

share|improve this answer

If you're creating Excel 2007/2010 files give ClosedXML a try.

share|improve this answer
I used your library for a project and it worked great. The API is very intuitive. Thanks! – Keith Dec 2 '11 at 14:49

If you don't need native excel spreadsheets, you can use a tool like Carlos Aguilar Mares ExcelXMLWriter. 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.

share|improve this answer

I would just like to add my two cents.

First, do not go with Excel JetCell.Net. I repeat, do not choose that vendor. Their excel writing feature only worked about 95% of the time for us. If that's good enough for you, then fine, but 95% success ratio was not good enough for us in our core business applications.

Of the programs I evaluated, the best I found were, in order

  1. Spreadsheet Gear
  2. Smart XLS
  3. Office Writer
  4. Spire

For detailed info on each see below.

  • SmartXLS -- 8 years in business. Very fast response time, and detailed code examples. No forum yet.
  • OfficeWriter -- Been in business 15 years. Large forum -- 1,000+ threads. Different pricing options for guaranteed response times. Lots of other clients in financial services industry.
  • Spire -- simple API. Good forum - 121 topics.
  • SpreadsheetGear -- simple API. Good online help how to's, and great software functionality. Downside is its pricey and there is no forum. But their support is great through email.
  • JetCell.Net -- DID NOT WRITE EXCEL CORRECTLY 5% OF THE TIME, AND THEY DID NOT RESPOND TO MY SUPPORT EMAILS. Other than that, their API is probably the most intuitive of all.
share|improve this answer

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.

FlexCel from TMS Software

share|improve this answer
Me and my colleagues don't like FlexCel api. Sometimes the API design is awful. Speed is sometimes 10 times slower than using COM Automation. :( – nightcoder Mar 12 '10 at 12:07

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.

share|improve this answer
2  
actually using Excel API's serverside is an unsupported solution, for the reasons you mention. Excel API's are designed to be clientside only. working with XLSX and a XML library is one way, using ADO.NET is another. – Anonymous Type Mar 8 '10 at 6:03

SmartXLS is also a good choice.It support most features of excel like Charts,formulas, and the excel2007 format. SmartXLS for .net(java)

share|improve this answer

Officewriter is pretty awesome--it's a .net library that lets you generate spreadsheets from scratch or populate existing templates with new data. You don't need Excel installed on the server to use it, and it supports pivot tables, VBA macros, charts, formulas, and integrates with SSRS and SharePoint.

Licenced per CPU, must buy developer licence and pretty expensive.

share|improve this answer

I am surprised the OpenXml SDK didn't show up on the list for Office 2007/2010 files, it is one of the best I have found to work with.

A few benefits:

  • Doesn't require Office installed
  • Made by Microsoft = decent MSDN documentation
  • Just one .Net dll to use in project
  • SDK comes with many tools like diff, validator, etc

Links: Download SDK, "How Do I..." starter page

share|improve this answer

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.
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.

share|improve this answer

Give Spreadsheet Gear 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 $$.

share|improve this answer

I have tried many solutions and my favorite is Clear Office.

I would stay away from Office COM interop. It is really slow and tends to crash.

XlsIo is very basic. SpreadsheetGear is fine.

I like Clear Office because they have the entire spreadsheet, not just bits and pieces. It is also very fast and the object model is clean. As for the price, most solutions are quite affordable. Once you pay one developer license, you can install it on as many desktops as you want.

share|improve this answer

You can also try Nika-soft's NativeExcel library. It is a c# library with full source code.

share|improve this answer

We use Essential XLSIO from SyncFusion. It is not free, but it has worked well.

share|improve this answer

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.

share|improve this answer

You could just hook into the Excel object library and manipulate the excel spreadsheet right through the object model.

share|improve this answer
unfortunately this is too slow normally. – Anonymous Type Mar 8 '10 at 4:32

Not the answer you're looking for? Browse other questions tagged or ask your own question.