vote up 22 vote down star
23

What is the best tool for creating an Excel Spreadsheet with C#.

Ideally, I would like open source so I don't have to add any third party dependencies to my code, and I would like to avoid using Excel directly to create the file (using OLE Automation.)

The .CSV file solution is easy, and is the current way I am handling this, but I but I would like to control the output formats.


EDIT: I am still looking at these to see the best alternative for my solution. Interop will work, but it requires Excel to be on the machine you are using. Also the OLEDB method is intriguing, but may not yield much more than what I can achieve with CSV files. I will look more into the 2003 xml format, but that also puts a > Excel 2003 requirement on the file.

I am currently looking at a port of the PEAR (PHP library) Excel Writer that will allow some pretty good XLS data and formatting and it is in the Excel_97 compatible format that all modern versions of Excel support. The PEAR Excel Writer is here: PEAR - Excel Writer

flag
Any news on the matter ? – sirrocco Feb 10 at 8:15

19 Answers

vote up 4 vote down

You actually might want to check out the interop classes. You say no OLE (which this isn't), but the interop classes are very easy to use.

You might be impressed if you haven't tried them.

link|flag
1  
But you have to make sure that you dispose of everything manually, otherwise you will leak memory – MagicKat Sep 29 '08 at 22:40
@MagicKat: I would hope you are paying attention to that anyway... – Rich B Sep 29 '08 at 22:41
2  
@Ricky B: Also, in my experience with the interop is that it does use excel. Every time we used it, if Excel wasn't installed on the machine, we would get COM exceptions. – MagicKat Sep 29 '08 at 22:42
@MagicKat: I am aware. – Rich B Sep 29 '08 at 22:56
vote up 6 vote down

An extremely lightweight option may be to use HTML tables. Just create head, body, and table tags in a file, and save it as a file with an .xls extension. There are Microsoft specific attributes that you can use to style the output, including formulas.

I realize that you may not be coding this in a web application, but here is an example of the composition of an Excel file via an HTML table. This technique could be used if you were coding a console app, desktop app, or service.

link|flag
vote up 0 vote down

IKVM + POI

Or, you could use the Interop ...

link|flag
vote up 17 vote down

You can use OLEDB to create and manipulate Excel files. Check this: Reading and Writing Excel using OLEDB.

Typical example:

using (OleDbConnection conn = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\\temp\\test.xls;Extended Properties='Excel 8.0;HDR=Yes'"))
{
  conn.Open();
  OleDbCommand cmd = new OleDbCommand("CREATE TABLE [Sheet1] ([Column1] string, [Column2] string)", conn);
  cmd.ExecuteNonQuery();
}

EDIT - Some more links:

link|flag
Can someone confirm if this works when running in x64? I am pretty sure Jet only works if your app is compiled or running in 32-bit mode. – Lamar Sep 30 '08 at 1:45
I've just tested this connection and it failed on a Windows Server 2008 R2 x64 RC, seems like one have to install the 2007 Office System Driver: Data Connectivity Components [microsoft.com/downloads/… – Chris Richner Jun 16 at 7:31
Be very careful with this -- it's a big ugly cludge (for example, sometimes it guesses a column type and discards all the data that does not fit). – dbkk Sep 29 at 9:02
vote up -1 vote down

Another option would be what this article describes: http://www.codeproject.com/KB/aspnet/ExportClassLibrary.aspx

link|flag
vote up 0 vote down

You may want to take a look at http://www.gemboxsoftware.com/GBSpreadsheetFree.htm.

They have a free version with all features but limited to 150 rows per sheet and 5 sheets per workbook, if that falls within your needs.

I haven't had need to use it myself yet, but does look interesting.

link|flag
vote up 0 vote down

The Java open source solution is Apache POI. Maybe there is a way to setup interop here, but I don't know enough about Java to answer that.

When I explored this problem I ended up using the Interop assemblies.

link|flag
vote up 2 vote down

You could consider creating your files using the XML Spreadsheet 2003 format. This is a simple XML format using a well documented schema.

link|flag
vote up 0 vote down

Here's a way to do it with LINQ to XML, complete with sample code:

Quickly Import and Export Excel Data with LINQ to XML

It's a little complex, since you have to import namespaces and so forth, but it does let you avoid any external dependencies.

(Also, of course, it's VB .NET, not C#, but you can always isolate the VB .NET stuff in its own project to use XML Literals, and do everything else in C#.)

link|flag
vote up 1 vote down

I agree about generating XML Spreadsheets, here's an example on how to do it for C# 3 (everyone just blogs about it in VB 9 :P) http://www.aaron-powell.com/blog.aspx?id=1237

link|flag
vote up 0 vote down

Have you ever tried sylk?

We used to generate excelsheets in classic asp as sylk and right now we're searching for an excelgenerater too.

The advantages for sylk are, you can format the cells.

link|flag
vote up 2 vote down

The various Office 2003 XML libraries avaliable work pretty well for smaller excel files. However, I find the sheer size of a large workbook saved in the XML format to be a problem. For example, a workbook I work with that would be 40MB in the new (and admittedly more tightly packed) XLSX format becomes a 360MB XML file.

As far as my research has taken me, there are two commercial packages that allow output to the older binary file formats. They are:

Neither are cheap (500USD and 800USD respectively, I think). but both work independant of Excel itself.

What I would be curious about is the Excel output module for the likes of OpenOffice.org. I wonder if they can be ported from Java to .Net.

link|flag
vote up 0 vote down

SpreadsheetGear for .NET will do it.

You can see live ASP.NET (C# and VB) samples here and download an evaluation version here.

Disclaimer: I own SpreadsheetGear LLC

link|flag
Hmmm...please help me understand why this is voted down. Too much hype? Too long? We hear things like "I can honestly say that of all the components my company has ever used, SpreadsheetGear is the best that I have encountered" from our customers on a regular basis...feedback appreciated! – Joe Erickson Jan 31 at 20:19
Joe, this down vote does indeed looks unfair to me. You have my +1 to balance ;-) – Serge - appTranslator Feb 2 at 15:56
It was likely voted down because it reads like an advertisement. – LFSR Consulting Feb 12 at 15:09
This was still receiving down votes 5 months after my answer so I replaced the objectionable long answer with a short answer - my apologies. – Joe Erickson Jun 3 at 4:57
vote up 7 vote down

You can use ExcelXmlWriter http://www.carlosag.net/Tools/ExcelXmlWriter/

It works fine.

link|flag
vote up 0 vote down

I've just recently used FlexCel.NET and found it to be an excellent library! I don't say that about too many software products. No point in giving the whole sales pitch here, you can read all the features on their website.

It is a commercial product, but you get the full source if you buy it. So I suppose you could compile it into your assembly if you really wanted to. Otherwise it's just one extra assembly to xcopy - no configuration or installation or anything like that.

I don't think you'll find any way to do this without third-party libraries as .NET framework, obviously, does not have built in support for it and OLE Automation is just a whole world of pain.

link|flag
vote up 4 vote down

A few options I have used:

If XLSX is a must: ExcelPackage is a good start but died off when the developer quit working on it. ExML picked up from there and added a few features. ExML isn't a bad option, I'm still using it in a couple of production websites.

For all of my new projects, though, I'm using NPOI, the .NET port of Apache POI. It doesn't have XLSX support yet but it is the only one under active development.

link|flag
Best answer yet, I wish I could vote it all the way to the top – TheLameDuck Sep 18 at 21:30
vote up 10 vote down

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 my blog posts:

Creating Excel spreadsheets .XLS and .XLSX in C#

NPOI with Excel Table and dynamic Chart

link|flag
vote up 0 vote down

Some useful Excel automation in C# , u can find from the following link.

http://csharp.net-informations.com/excel/csharp-excel-tutorial.htm

bolton.

link|flag
vote up 0 vote down

Well,

you can also use a third party library like Aspose.

This library has the benefit that it does not require Excel to be installed on your machine which would ideal in your case.

link|flag

Your Answer

Get an OpenID
or

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