How to export Excel data to CSV file in WinForms?
Syncfusion Essential® XlsIO is a .NET Excel library used to create, read, and edit Excel documents. Using this library, you can export an Excel file with data into a CSV file.
Steps to export Excel data into a CSV file programmatically:
- Create a new C# console application project.
Create a new console application
- Install the Syncfusion.XlsIO.WinForms NuGet package as a reference to your .NET Framework applications from NuGet.org.
Install XlsIO NuGet package
- Include the following namespace in the Program.cs file.
C#
using Syncfusion.XlsIO;
VB.NET
Imports Syncfusion.XlsIO
- Use the following code snippet to export an Excel file with data into CSV file.
C#
// Initialize ExcelEngine using (ExcelEngine excelEngine = new ExcelEngine()) { // Initialize Application IApplication application = excelEngine.Excel; // Set default version for application application.DefaultVersion = ExcelVersion.Xlsx; // Open a workbook to be exported as CSV IWorkbook workbook = application.Workbooks.Open(DataPathBase + "ExportData.xlsx"); // Accessing the first worksheet in the workbook IWorksheet worksheet = workbook.Worksheets[0]; // Save the workbook to csv format worksheet.SaveAs("Output.csv", ","); }
VB.NET
'Initialize ExcelEngine Using excelEngine As ExcelEngine = New ExcelEngine 'Initialize Application Dim application As IApplication = excelEngine.Excel 'Set default version for application application.DefaultVersion = ExcelVersion.Xlsx 'Open a workbook to be exported as CSV Dim workbook As IWorkbook = application.Workbooks.Open((DataPathBase + "ExportData.xlsx")) 'Accessing first worksheet in the workbook Dim worksheet As IWorksheet = workbook.Worksheets(0) 'Save the workbook to csv format worksheet.SaveAs("Output.csv", ",") End Using
A complete working example to export Excel data to CSV can be downloaded from Export-Excel-File-To-CSV-File.zip.
By executing the program, you will get the Excel file as follows.
Excel to CSV
CSV file with comma separated output is as below,
CSV File
Take a moment to peruse the documentation, where you can find basic worksheet data manipulation options along with features like Conditional Formatting, worksheet calculations through Formulas, adding Charts in worksheet or workbook, organizing and analyzing data through Tables and PivotTables, appending multiple records to worksheet using Template Markers, and most importantly PDF and Image conversions etc., with code examples.
Refer here to explore the rich set of Syncfusion® Essential XlsIO features.
An online sample link to export Excel file to CSV file.
Starting with v16.2.0.x, if you reference Syncfusion assemblies from trial setup or from the NuGet feed, include a license key in your projects. Refer to link to learn about generating and registering Syncfusion license key in your application to use the components without trail message.
Conclusion
I hope you enjoyed learning about how to export Excel data to CSV file in WinForms.
You can refer to our .NET Excel library page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our .NET Excel library example to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedbackportal. We are always happy to assist you!