How to export DataTable to Excel in C#. I am using Windows form. The DataTable is associated with DataGridView control. I have to export records of DataTable to Excel
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
I would recommend ClosedXML - You can turn a DataTable into an Excel worksheet with some very readable code:
The developer is responsive and helpful. The project is actively developed, and the documentation is superb. |
|||
|
|
An elegant option is writing an extension method (see below) for the DataTable class of .net framework. This extention method can be called as follows:
Extension method for DataTable class:
|
|||
|
|
|
Try this function pass the datatable and file path where you want to export
|
|||
|
|
|
Try simple code, to convert DataTable to excel file as csv:
|
||||
|
|
|
Please use below link for export to excel http://madskristensen.net/post/Export-a-DataTable-to-Excel-in-ASPNET.aspx http://www.codeproject.com/KB/office/ExcelDataTable.aspx |
|||
|
|
|
Here it is described quite well: |
|||
|
|
