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





3.00/5 (5 votes)
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.
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 DataTable
s.
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!!!!