Click here to Skip to main content
15,885,141 members
Articles / Productivity Apps and Services / Microsoft Office

Export DataSet to Multiple Excel Sheets

Rate me:
Please Sign up or sign in to vote.
4.80/5 (42 votes)
12 Dec 2008CPOL 273.8K   8.1K   94   70
Exporting multiple tables in a DataSet to multiple sheets in an Excel file

Introduction

I was in need of exporting multiple tables in a DataSet to an Excel file with multiple sheets, and I couldn't find anything that actually works. So, I wrote one to help people who might be in the same situation. The complete code in ExcelHelper.cs is shown below.

This only works for Excel 2003 and later versions. If a table in the dataset has more than 65,000 rows, it will break it into multiple sheets for the table with sheet name (tableNameX). replaceXmlChar() function is added to escape XML reserved characters.

Limitations of the Code

It does not handle data tables with more than 256 columns (Excel 2003 column limit), and when data tables have very large rows count, it might throw OutOfMemory exception.

Using the Code

To export a DataSet, just call the ExcelHelper.ToExcel() function as follows:

C#
var ds = new DataSet();
           var dt = new DataTable("TableName For Sheet1");
           dt.Columns.Add("col1");
           dt.Columns.Add("col2");
           dt.Rows.Add("Value1", "Value2");

           var dt2 = new DataTable("TableName For Sheet2");
           dt2.Columns.Add("col1");
           dt2.Columns.Add("col2");
           dt2.Rows.Add("Value1", "Value2");
           ds.Tables.Add(dt);
           ds.Tables.Add(dt2);
           ExcelHelper.ToExcel(ds, "test.xls", Page.Response);

Here is the code that does the exporting:

C#
//ExcelHelper.cs

public class ExcelHelper
{
    //Row limits older Excel version per sheet
        const int rowLimit = 65000;

        private static string getWorkbookTemplate()
        {
            var sb = new StringBuilder();
            sb.Append("<xml version>\r\n<Workbook
		xmlns=\"urn:schemas-microsoft-com:office:spreadsheet\"\r\n");
            sb.Append(" xmlns:o=\"urn:schemas-microsoft-com:office:office\"\r\n
		xmlns:x=\"urn:schemas- microsoft-com:office:excel\"\r\n
		xmlns:ss=\"urn:schemas-microsoft-com:office:spreadsheet\">\r\n");
            sb.Append(" <Styles>\r\n
		<Style ss:ID=\"Default\" ss:Name=\"Normal\">\r\n
		<Alignment ss:Vertical=\"Bottom\"/>\r\n <Borders/>");
            sb.Append("\r\n <Font/>\r\n <Interior/>\r\n <NumberFormat/>\r\n
		<Protection/>\r\n </Style>\r\n
		<Style ss:ID=\"BoldColumn\">\r\n <Font ");
            sb.Append("x:Family=\"Swiss\" ss:Bold=\"1\"/>\r\n </Style>\r\n
		<Style ss:ID=\"s62\">\r\n <NumberFormat");
            sb.Append(" ss:Format=\"@\"/>\r\n </Style>\r\n
		<Style ss:ID=\"Decimal\">\r\n
		<NumberFormat ss:Format=\"0.0000\"/>\r\n </Style>\r\n ");
            sb.Append("<Style ss:ID=\"Integer\">\r\n
		<NumberFormat ss:Format=\"0\"/>\r\n </Style>\r\n
		<Style ss:ID=\"DateLiteral\">\r\n <NumberFormat ");
            sb.Append("ss:Format=\"mm/dd/yyyy;@\"/>\r\n </Style>\r\n
		<Style ss:ID=\"s28\">\r\n");
            sb.Append("<Alignment ss:Horizontal=\"Left\" ss:Vertical=\"Top\"
		ss:ReadingOrder=\"LeftToRight\" ss:WrapText=\"1\"/>\r\n");
            sb.Append("<Font x:CharSet=\"1\" ss:Size=\"9\"
		ss:Color=\"#808080\" ss:Underline=\"Single\"/>\r\n");
            sb.Append("<Interior ss:Color=\"#FFFFFF\" ss:Pattern=\"Solid\"/>

		</Style>\r\n</Styles>\r\n {0}</Workbook>");
            return sb.ToString();
        }

        private static string replaceXmlChar(string input)
        {
            input = input.Replace("&", "&");
            input = input.Replace("<", "<");
            input = input.Replace(">", ">");
            input = input.Replace("\"", "&quot;");
            input = input.Replace("'", "&apos;");
            return input;
        }

        private static string getWorksheets(DataSet source)
        {
            var sw = new StringWriter();
            if (source == null || source.Tables.Count == 0)
            {
                sw.Write("<Worksheet ss:Name=\"Sheet1\"><Table><Row>

		<Cell  ss:StyleID=\"s62\"><Data ss:Type=\"String\"></Data>
		</Cell></Row></Table></Worksheet>");
                return sw.ToString();
            }
            foreach (DataTable dt in source.Tables)
            {
                if (dt.Rows.Count == 0)
                    sw.Write("<Worksheet ss:Name=\"" + replaceXmlChar(dt.TableName) +
			"\"><Table><Row><Cell  ss:StyleID=\"s62\">

			<Data ss:Type=\"String\"></Data></Cell></Row>
			</Table></Worksheet>");
                else
                {
                    //write each row data
                    var sheetCount = 0;
                    for (int i = 0; i < dt.Rows.Count; i++)
                    {
                        if ((i % rowLimit) == 0)
                        {
                            //add close tags for previous sheet of the same data table
                            if ((i / rowLimit) > sheetCount)
                            {
                                sw.Write("</Table></Worksheet>");
                                sheetCount = (i / rowLimit);
                            }
                            sw.Write("<Worksheet ss:Name=\"" +
				replaceXmlChar(dt.TableName) +
                                     (((i / rowLimit) == 0) ? "" :
				Convert.ToString(i / rowLimit)) + "\"><Table>");
                            //write column name row
                            sw.Write("<Row>");
                            foreach (DataColumn dc in dt.Columns)
                                sw.Write(
                                    string.Format(
                                        "<Cell ss:StyleID=\"BoldColumn\">

				<Data ss:Type=\"String\">{0}</Data></Cell>",
                                        replaceXmlChar(dc.ColumnName)));
                            sw.Write("</Row>\r\n");
                        }
                        sw.Write("<Row>\r\n");
                        foreach (DataColumn dc in dt.Columns)
                            sw.Write(
                                string.Format(
                                    "<Cell ss:StyleID=\"s62\"><Data ss:Type=\"String\">

					{0}</Data></Cell>",
                                    		replaceXmlChar
					(dt.Rows[i][dc.ColumnName].ToString())));
                        sw.Write("</Row>\r\n");
                    }
                    sw.Write("</Table></Worksheet>");
                }
            }

            return sw.ToString();
        }
        public static string GetExcelXml(DataTable dtInput, string filename)
        {
            var excelTemplate = getWorkbookTemplate();
            var ds = new DataSet();
            ds.Tables.Add(dtInput.Copy());
            var worksheets = getWorksheets(ds);
            var excelXml = string.Format(excelTemplate, worksheets);
            return excelXml;
        }

        public static string GetExcelXml(DataSet dsInput, string filename)
        {
            var excelTemplate = getWorkbookTemplate();
            var worksheets = getWorksheets(dsInput);
            var excelXml = string.Format(excelTemplate, worksheets);
            return excelXml;
        }

        public static void ToExcel
		(DataSet dsInput, string filename, HttpResponse response)
        {
            var excelXml = GetExcelXml(dsInput, filename);
            response.Clear();
            response.AppendHeader("Content-Type", "application/vnd.ms-excel");
            response.AppendHeader
		("Content-disposition", "attachment; filename=" + filename);
            response.Write(excelXml);
            response.Flush();
            response.End();
        }

        public static void ToExcel
		(DataTable dtInput, string filename, HttpResponse response)
        {
            var ds = new DataSet();
            ds.Tables.Add(dtInput.Copy());
            ToExcel(ds, filename, response);
        }
    }

History

  • 7th December, 2008: Initial post
  • 8th December, 2008: Source code and article updated
  • 11th December, 2008: Source code and article updated

License

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


Written By
Software Developer Oliver Wyman Groups
United States United States
Education: Masters in Applied mathematics

Certification:
MCP in Asp.net
MCP in SQL Server 2008 Implementation.

Working Experience In .Net since 2005

Comments and Discussions

 
QuestionRe: not in correct format for 2010. Pin
vimalrvs16-Sep-14 19:38
vimalrvs16-Sep-14 19:38 
GeneralThanks For Share this artical very helpful Pin
sapnapal8-Aug-12 22:29
sapnapal8-Aug-12 22:29 
GeneralMy vote of 5 Pin
chus2425-Jun-12 14:43
chus2425-Jun-12 14:43 
Questiondata display in gridview depend on user key in.how to export it? Pin
musiw12-Jun-12 23:11
musiw12-Jun-12 23:11 
QuestionWorks Great...Thanks Pin
Member 3324275-Jun-12 8:29
Member 3324275-Jun-12 8:29 
GeneralNice Pin
sivasankari ts14-May-12 23:28
sivasankari ts14-May-12 23:28 
GeneralVote of 5! Pin
mk_ln12-Apr-12 11:07
mk_ln12-Apr-12 11:07 
GeneralMy vote of 5 Pin
Manoj Kumar Choubey4-Apr-12 23:27
professionalManoj Kumar Choubey4-Apr-12 23:27 
nice
GeneralThanks for this helpful code Pin
monika nafdey14-Mar-12 19:19
monika nafdey14-Mar-12 19:19 
GeneralMy vote of 5 Pin
ProEnggSoft1-Mar-12 18:30
ProEnggSoft1-Mar-12 18:30 
Questionerror message when opening text.xls Pin
Member 86927471-Mar-12 16:55
Member 86927471-Mar-12 16:55 
AnswerRe: error message when opening text.xls Pin
cadetduke30-Mar-12 9:49
cadetduke30-Mar-12 9:49 
GeneralRe: error message when opening text.xls Pin
Teenustar10-Oct-12 10:55
Teenustar10-Oct-12 10:55 
GeneralMy vote of 5 Pin
ARK Kambhampati27-Feb-12 20:03
ARK Kambhampati27-Feb-12 20:03 
QuestionAlternate row color Pin
kinjalin29-Nov-11 21:02
kinjalin29-Nov-11 21:02 
GeneralMy vote of 5 Pin
Fredde197728-Sep-11 3:50
Fredde197728-Sep-11 3:50 
Questionneed help with style sheet error [modified] Pin
talmans26-Aug-11 12:47
talmans26-Aug-11 12:47 
BugNot woking with Marquee taq? Pin
muthura120-Jun-11 1:39
muthura120-Jun-11 1:39 
GeneralMy vote of 5! Pin
Filip D'haene14-May-11 11:11
Filip D'haene14-May-11 11:11 
QuestionCell Formatting.. Issues...? Pin
codingrocks13-Mar-11 2:24
codingrocks13-Mar-11 2:24 
AnswerRe: Cell Formatting.. Issues...? Pin
Ming_Lu13-Mar-11 14:41
Ming_Lu13-Mar-11 14:41 
GeneralMy vote of 4 Pin
praveen_adb9-Jan-11 20:26
praveen_adb9-Jan-11 20:26 
GeneralMy vote of 5 Pin
bacoares23-Nov-10 4:48
bacoares23-Nov-10 4:48 
GeneralMy vote of 5 Pin
L.H.C1-Oct-10 18:56
L.H.C1-Oct-10 18:56 
GeneralEasy alternative Pin
CikaPero13-Apr-10 22:52
CikaPero13-Apr-10 22:52 

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.