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

Exporting a dataset with multiple tables to separate sheets in an Excel file

Rate me:
Please Sign up or sign in to vote.
3.00/5 (5 votes)
23 May 2007CPOL3 min read 107.8K   2.2K   47   20
This article describes how to export data from multiple tables in a dataset to an Excel file in separate sheets.

Introduction

This article explains how to export the contents of a dataset with more than one table, to an Excel workbook in separate sheets. The article also helps to understand the basics behind the Excel application object and its usage for creating a Workbook and inserting Worksheets in it. The following code can however extend its functionalities by incorporating methods and procedures for formatting the written data like the cell background, font color, inserting formulas, etc.

Background

The need to write this code came up when one of my applications needed the same functionalities where my Stored Procedure returned two result sets which I stored in a dataset. The user wanted the two result sets to be displayed in two separate sheets in an Excel file. But the current method of Response.AddHeader ("content-disposition") allowed me to write the output in one single sheet with the two result sets one below the other. After exploring the net and integration of a couple of techniques, I came up with a solution which could solve my purpose of creating an Excel file and then writing the data from the dataset tables in the Excel file.

Using the Code - Implementation

The code is pretty simple and straightforward. As a pre-requisite, you should have Excel installed on your system. I have used VB.NET as my base language. Although with a little modification you can always convert the existing code to C# too.

In order to start using the code, add a reference to the COM object Microsoft Excel Object Library. Since I had Microsoft Office 2003 installed on my system, it was Microsoft Excel 11.0 Object Library in my case. Now import the namespaces for the Excel library and InteropServices into your code.

VB
Imports Microsoft.Office.Interop
Imports System.Runtime.InteropServices.Marshal

We will need to import InteropServices because the Microsoft Office code is still based on the old, unmanaged world and you need to use COM Interop to facilitate communication with it. Now copy the following code to your code-behind file to export the dataset tables to Excel. The function takes as parameter a DataSet containing the DataTables.

VB
Public Sub ExportToExcel(ByVal DS_MyDataset As DataSet)

    'The full path where the excel file will be stored
    Dim strFileName As String = _
        AppDomain.CurrentDomain.BaseDirectory.Replace("/", "\") 
    strFileName = strFileName & "\MyExcelFile" & _
                  System.DateTime.Now.Ticks.ToString() ".xls"

    Dim objExcel As Excel.Application
    Dim objBooks As Excel.Workbooks, objBook As Excel.Workbook
    Dim objSheets As Excel.Sheets, objSheet As Excel.Worksheet
    Dim objRange As Excel.Range

    Try
        'Creating a new object of the Excel application object
        objExcel = New Excel.Application
        'Hiding the Excel application
        objExcel.Visible = False
        'Hiding all the alert messages occurring during the process
        objExcel.DisplayAlerts = False

        'Adding a collection of Workbooks to the Excel object
        objBook = CType(objExcel.Workbooks.Add(), Excel. Workbook)

        'Saving the Workbook as a normal workbook format.
        objBook.SaveAs(strFileName, Excel.XlFileFormat.xlWorkbookNormal) 

        'Getting the collection of workbooks in an object
        objBooks = objExcel.Workbooks

        'Get the reference to the first sheet
        'in the workbook collection in a variable
        objSheet = CType(objBooks(1).objSheets.Item(1), Excel.Worksheet)
        'Optionally name the worksheet
        objSheet.Name = "First Sheet"
        'You can even set the font attributes of a range of cells
        'in the sheet. Here we have set the fonts to bold.
        objSheet.Range("A1","Z1").Font.Bold = True 

        'Get the cells collection of the sheet in a variable, to write the data.
        objRange = objSheet.Cells

        'Calling the function to write the dataset data in the cells of the first sheet.
        WriteData(DS_MyDataset.Tables(0), objCells)

        'Setting the width of the specified range of cells
        'so as to absolutely fit the written data.
        objSheet.Range("A1","Z1").EntireColumn.AutoFit()
        'Saving the worksheet.
        objSheet.SaveAs(strFileName)
        
        objBook = objBooks.Item(1)
        objSheets = objBook.Worksheets
        objSheet = CType(objSheets.Item(2), Excel.Worksheet)
        objSheet.Name = "Second Sheet"
        'Setting the color of the specified range of cells
        'to Red (ColorIndex 3 denoted Red color)
        objSheet.Range("A1","Z1").Font.ColorIndex = 3

        objRange = objSheet.Cells
        WriteData(DS_MyDataset.Tables(1), objCells)
        objSheet.Range("A1","Z1").EntireColumn.AutoFit()

        objSheet.SaveAs(strFileName)

    Catch ex As Exception
        Response.Write(ex.Message)
    Finally
        'Close the Excel application
        objExcel.Quit()

        'Release all the COM objects so as to free the memory
        ReleaseComObject(objRange)
        ReleaseComObject(objSheet)
        ReleaseComObject(objSheets)
        ReleaseComObject(objBook)
        ReleaseComObject(objBooks)
        ReleaseComObject(objExcel)

        'Set the all the objects for the Garbage collector to collect them.
        objExcel = Nothing 
        objBooks = Nothing 
        objBook = Nothing 
        objSheets = Nothing 
        objSheet = Nothing 
        objRange = Nothing 

        'Specifically call the garbage collector.
        System.GC.Collect()
    End Try
End Sub

Private Function WriteData(ByVal DT_DataTable As DataTable, _
        ByVal objCells As Excel.Range) As String
    Dim iRow As Integer, iCol As Integer

    'Traverse through the DataTable columns to write the
    'headers on the first row of the excel sheet.
    For iCol = 0 To DT_DataTable.Columns.Count - 1
        objCells(1, iCol + 1) = DT_DataTable.Columns(iCol).ToString
    Next

    'Traverse through the rows and columns
    'of the datatable to write the data in the sheet.
    For iRow = 0 To DT_DataTable.Rows.Count - 1
        For iCol = 0 To DT_DataTable.Columns.Count - 1
            objCells(iRow + 2, iCol + 1) = DT_DataTable.Rows(iRow)(iCol)
        Next
    Next
End Function

Pros and Cons

Pros:

  • Code can be used as a component to export formatted reports to Excel.
  • The code is very small and can be modified as per user requirements for getting formatted output on Excel sheets in a presentable format.

Cons:

  • The code uses Excel Object Library which is required at the development server.
  • Since the code creates objects of COM components through Interop services, if the components are not efficiently released, it may result in memory leakage.

Conclusion

You can see that the above code is self explanatory and quite understandable. The code can further be enhanced by formatting the written data like the background of the cells, adding gridlines to the Excel sheet, etc. We can even add more sheets to the file if the dataset contains more than three tables since the default workbook has three sheets. The above code is just a sample of what all can be done with the Excel object. More enhanced exception handling can be done by catching more specific exceptions. Enjoy and happy coding!!!!

License

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


Written By
Web Developer
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 1 Pin
niki_reid30-May-13 2:04
niki_reid30-May-13 2:04 
GeneralMy vote of 5 Pin
leo.sanni9-Nov-11 16:22
leo.sanni9-Nov-11 16:22 
QuestionCan I ge c# code? Pin
Selvakumar - B4-Sep-09 21:55
Selvakumar - B4-Sep-09 21:55 
GeneralMy vote of 1 Pin
vannavada3-Feb-09 7:48
vannavada3-Feb-09 7:48 
GeneralGetting error while adding Worksheet Pin
Mark_20006-Jun-08 3:36
Mark_20006-Jun-08 3:36 
QuestionGot object reference Error Pin
prakashkpd3-Oct-07 21:22
prakashkpd3-Oct-07 21:22 
QuestionExporting Excel pivot charts in ASP.NET 1.1 Aplication? Pin
k_bhawna1-Jun-07 19:01
k_bhawna1-Jun-07 19:01 
GeneralAvoiding the need for Excel on the server Pin
purplepangolin23-May-07 23:55
purplepangolin23-May-07 23:55 
GeneralRe: Avoiding the need for Excel on the server Pin
jain.ashish2124-May-07 0:20
jain.ashish2124-May-07 0:20 
GeneralRe: Avoiding the need for Excel on the server Pin
purplepangolin24-May-07 0:39
purplepangolin24-May-07 0:39 
QuestionRe: Avoiding the need for Excel on the server Pin
jain.ashish2124-May-07 22:16
jain.ashish2124-May-07 22:16 
AnswerRe: Avoiding the need for Excel on the server Pin
purplepangolin24-May-07 22:39
purplepangolin24-May-07 22:39 
QuestionRe: Avoiding the need for Excel on the server Pin
jain.ashish2124-May-07 22:44
jain.ashish2124-May-07 22:44 
AnswerRe: Avoiding the need for Excel on the server Pin
purplepangolin24-May-07 22:50
purplepangolin24-May-07 22:50 
QuestionRe: Avoiding the need for Excel on the server Pin
jain.ashish2124-May-07 23:06
jain.ashish2124-May-07 23:06 
AnswerRe: Avoiding the need for Excel on the server Pin
purplepangolin24-May-07 23:11
purplepangolin24-May-07 23:11 
GeneralRe: Avoiding the need for Excel on the server Pin
ramki_mars22-Jul-08 21:18
ramki_mars22-Jul-08 21:18 
AnswerRe: Avoiding the need for Excel on the server Pin
minga4823-Sep-08 3:18
minga4823-Sep-08 3:18 
AnswerRe: Avoiding the need for Excel on the server Pin
Jörgen Andersson30-May-07 0:38
professionalJörgen Andersson30-May-07 0:38 
GeneralRe: Avoiding the need for Excel on the server Pin
ramki_mars22-Jul-08 21:21
ramki_mars22-Jul-08 21:21 

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.