Working with Excel Data
3 Jul 20241 minute to read
XlsIO provides support for importing data to Excel and exporting data from Excel. This includes handling various data formats and structures, enabling users to integrate Excel with different data sources and utilize Excel’s capabilities for data manipulation and analysis.
Import to Excel
It refers to the process of importing data from various sources into an Excel worksheet.
XlsIO provides the ability to import data into an Excel from the following data structures:
- DataTable to Excel
- DataColumn to Excel
- DataView to Excel
- Collection Objects to Excel
- Array to Excel
- Microsoft Grid Controls to Excel
- HTML Table to Excel
Export from Excel
It refers to the process of exporting data from an Excel worksheet and transferring it to various data structures.
XlsIO provides the ability to export data from Excel to the following data structures:
See Also
- How to use ImportOnSave option while importing data using XlsIO?
- How to Export Excel to DataTable in C#, VB.NET?
- How to Export data to Excel in WPF?
- How to Export DataTable to Excel with formatting in C#, VB.NET?
- How to Export DataTable with images to Excel in C#, VB.NET?
- How to export delimited string in the Excel worksheet into collection object and add it as a string array using C#, VB.NET?
- How to Import data from dynamic collection to Excel worksheet in C#, VB.NET?
- How to preserve long number while exporting in XlsIO?
- Blog: Export data from data sources to Excel and vice-versa in C#.