Click here to Skip to main content
15,884,176 members
Articles / Web Development / ASP.NET

A free "Export to Excel" C# class, using OpenXML

Rate me:
Please Sign up or sign in to vote.
4.88/5 (103 votes)
17 Dec 2013CPOL4 min read 498.8K   19.3K   182   140
How to easily add an "export to Excel" feature to your app

Introduction

It's amazing that even now, in 2013, there are so many developers still asking for help on how to write C# and VB.NET code to export their data to Excel.

Even worse, a lot of them will stumble on articles suggesting that they should write their data to a comma-separated file, but to give the file a .xls extension.

So today, I'm going to walkthrough how to use my C# "Export to Excel" class which you can add to your C# WinForms / WPF / ASP.NET application, using one line of code.

Depending on whether your data is stored in a DataSet, DataTable, or List<>, you simply need to call one of these three functions, and tell them what (Excel) file name you want to write to.

C#
public static bool CreateExcelDocument<T>(List<T> list, string ExcelFilename
public static bool CreateExcelDocument(DataTable dt, string ExcelFilename
public static bool CreateExcelDocument(DataSet ds, string ExcelFilename)

Here's a simple example.

We create a DataSet, fill it with some data (just add your own CreateSampleData function), then call the CreateExcelFile.CreateExcelDocument function, passing it the DataSet and a filename:

C#
// Step 1: Create a DataSet, and put some sample data in it
DataSet ds = CreateSampleData();

// Step 2: Create the Excel .xlsx file
try
{
    CreateExcelFile.CreateExcelDocument(ds, "C:\\Sample.xlsx");
}
catch (Exception ex)
{ 
    MessageBox.Show("Couldn't create Excel file.\r\nException: " + ex.Message);
    return;
}   

And that's all you have to do. The CreateExcelDocument function will create a "real" Excel file for you.

For example, if you had a created a DataSet containing three DataTables called:

  • Drivers
  • Vehicles,
  • Vehicle Owners,

..then here's what your Excel file would look like. The class would create one worksheet per DataTable, and each worksheet would contain the data from that DataTable.

Sample spreadsheet

The full source code for this C# class is freely downloadable here (click on the "Browse code" link in the left-hand panel), or you can download this full demo, plus a VB.NET version of the class, from my blog, MikesKnowledgeBase.

Adding the library to your application

The C# code above shows how easy it is to call the CreateExcelFile class.

C#
DataSet ds = CreateSampleData();
CreateExcelFile.CreateExcelDocument(ds, "C:\\Sample.xlsx");

However, to use this library, you'll need to add two files from the free Microsoft OpenXML SDK:

  • DocumentFormat.OpenXml.dll: From the free Microsoft Open XML SDK library
  • WindowsBase.dll: From the Microsoft .NET Framework library

Add these two DLLs to your project's References section, and remember to set them to "Copy Local".

Copy Local

Then, just download the CreateExcelFile.cs file (via the "Browse code" link in CodeProject's left-hand panel), and add it to your application. 

And that's it.

Regardless of if your data is stored in a List<>, DataTable, or DataSet, you can export it to a "real" Office 2007 Excel .xlsx file using that one line of code.

And because it is created using the OpenXML library, you can run this code on machines which don't have Excel installed.

ASP.NET

For ASP.NET developers, I've added three extra functions.

C#
public static bool CreateExcelDocument<T>(List<T> list, string filename, System.Web.HttpResponse Response)
public static bool CreateExcelDocument(DataTable dt, string filename, System.Web.HttpResponse Response)
public static bool CreateExcelDocument(DataSet ds, string filename, System.Web.HttpResponse Response)

Rather than creating the Excel file in a temporary directory, then having to load in the file and output it to the webpage's HttpResponse, you can get the library to write directly to the HttpResponse.

However, by default, this functionality is disabled (to prevent build issues for the non ASP.NET developers). To enable these three functions, you need to make two changes.

First, uncomment the top line of the CreateExcelFile.cs code, so that it now reads:

C#
#define INCLUDE_WEB_FUNCTIONS   

Now, you need to add a Reference to the System.Web .NET library:

Adding a reference

Once you've done these two steps, the CreateExcelFile library is ready to go.

For example, in this example, my ASP.NET C# code has a list of Employee records, stored in a List<Employeee>. I add an "Export to Excel" button to my webpage, and when the user clicks on it, I just need one simple call to the CreateExcelFile class.

C#
// In this example, I have a defined a List of my Employee objects.<br />class Employee;
List<Employee> listOfEmployees = new List<Employee>();
...
 
// The following ASP.Net code gets run when I click on my "Export to Excel" button.
protected void btnExportToExcel_Click(object sender, EventArgs e)
{
    // It doesn't get much easier than this...
    CreateExcelFile.CreateExcelDocument(listOfEmployees, "Employees.xlsx", Response);
}

And that's it. A real Excel file, in one line of code.

Going forward

You'll notice that this library is excellent for one job - writing plain, boring data to an Excel file. I haven't attempted to add any classes to add formatting, colors, pivot tables or anything else.

However, this class is an excellent way to get started (without paying for third-party software to create the Excel file for you), and if you want to take this further, you'll soon find that Googling will easily find you extra source code to add on top of this.

For example, if you wanted to add a background color to some of the cells in the Excel file, simply Google "open XML background color" and you'll have many articles showing you how to do this.

The reason I wrote this article is that I found that it was very hard to find a free, easy to use C# library which actually created the OpenXML Excel file in the first place.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Switzerland Switzerland
Full-stack Software Developer, working for an insurance company in Zurich, Switzerland.

More developer tips'n'trip at my website:
http://www.MikesKnowledgeBase.com

Comments and Discussions

 
QuestionColumns Width Pin
Jonas Dev1-Sep-14 11:38
Jonas Dev1-Sep-14 11:38 
AnswerRe: Columns Width Pin
leiyangge19-Sep-14 5:21
leiyangge19-Sep-14 5:21 
AnswerRe: Columns Width Pin
Mike Gledhill26-Sep-14 2:10
Mike Gledhill26-Sep-14 2:10 
QuestionDealing with Int Numbers that are larger than the IEEE757 Standard and gets rounded to 15 digits in Excel Pin
Edwin Jones13-Aug-14 2:03
Edwin Jones13-Aug-14 2:03 
AnswerExport to Excel C# class Pin
Rindra RAZAFINJATOVO26-Jul-14 22:15
Rindra RAZAFINJATOVO26-Jul-14 22:15 
GeneralRe: Export to Excel C# class Pin
Michael Gledhill26-Jul-14 22:44
Michael Gledhill26-Jul-14 22:44 
BugException occuring Pin
GoneBump21-Jul-14 20:23
GoneBump21-Jul-14 20:23 
GeneralRe: Exception occuring Pin
Mike Gledhill23-Jul-14 4:29
Mike Gledhill23-Jul-14 4:29 
Hi there,

Yup, you're absolutely right. If the data you're trying to export contains non-ASCII characters, my C# library will write the data to the Excel file, but it will be invalid XML.

For example, I can recreate your exception if I add a DataRow to my DataTable and include a char(12):

myDataTable.Rows.Add(new object[] { 1011, char.ConvertFromUtf32(12) + "Saab", "Automobile" });


The simplest (and safest) solution is to check your data for invalid data before writing it.

After all, Excel isn't going to be able to display a char(12) anyway.

Mike
GeneralRe: Exception occuring Pin
GoneBump17-Oct-14 21:10
GoneBump17-Oct-14 21:10 
QuestionGreat solution Pin
d_c_j2-Jul-14 9:21
d_c_j2-Jul-14 9:21 
QuestionSend an email of this copy Pin
Vivekh RF27-Jun-14 5:05
Vivekh RF27-Jun-14 5:05 
AnswerRe: Send an email of this copy Pin
Mike Gledhill29-Jun-14 21:12
Mike Gledhill29-Jun-14 21:12 
QuestionMy vote of 5 Pin
Yogesh Kumar Tyagi23-Jun-14 2:27
professionalYogesh Kumar Tyagi23-Jun-14 2:27 
QuestionFile not downloading Pin
James W20-Jun-14 8:28
James W20-Jun-14 8:28 
AnswerRe: File not downloading Pin
Michael Gledhill22-Jun-14 7:39
Michael Gledhill22-Jun-14 7:39 
GeneralRe: File not downloading Pin
James W23-Jun-14 2:48
James W23-Jun-14 2:48 
QuestionMy vote of only 5... Pin
Hannes_Malan19-Jun-14 19:29
professionalHannes_Malan19-Jun-14 19:29 
AnswerRe: My vote of only 5... Pin
Michael Gledhill19-Jun-14 20:08
Michael Gledhill19-Jun-14 20:08 
QuestionError with .xlsx Pin
Member 1089286818-Jun-14 8:31
Member 1089286818-Jun-14 8:31 
AnswerRe: Error with .xlsx Pin
Michael Gledhill19-Jun-14 4:54
Michael Gledhill19-Jun-14 4:54 
GeneralRe: Error with .xlsx Pin
swbo1029-Oct-14 3:50
swbo1029-Oct-14 3:50 
AnswerRe: Error with .xlsx Pin
swbo10210-Oct-14 4:29
swbo10210-Oct-14 4:29 
QuestionWorks fine, but one small problem Pin
Johnny J.4-Jun-14 23:15
professionalJohnny J.4-Jun-14 23:15 
AnswerRe: Works fine, but one small problem Pin
Michael Gledhill4-Jun-14 23:23
Michael Gledhill4-Jun-14 23:23 
GeneralRe: Works fine, but one small problem Pin
Johnny J.4-Jun-14 23:29
professionalJohnny J.4-Jun-14 23:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.