Merge or combine multiple WinForms Excel files in C#, VB.NET.
Syncfusion® Excel (XlsIO) library is a .NET Excel library used to create, read, and edit Excel documents. Using this library, you can split one Excel file into multiple files or combine several Excel files into a single file in C# and VB.NET.
Steps to merge or combine multiple Excel files into a single Excel file programmatically:
Step 1: Create a new C# console application project.
Create a new C# console application
Step 2: Install Syncfusion.XlsIO.WinForms NuGet package as a reference to your .NET Framework applications from the NuGet.org.
Install NuGet package
Step 3: Include the following namespaces in the Program.cs file:
C#
using Syncfusion.XlsIO; using System.IO; using System.Reflection;
VB.NET
Imports Syncfusion.XlsIO Imports System.IO Imports System.Reflection
Step 4: Add the following code snippet to merge or combine multiple Excel files into single Excel file.
C#
// Initialize ExcelEngine using (ExcelEngine excelEngine = new ExcelEngine()) { // Initialize Application IApplication application = excelEngine.Excel; // Set default application version application.DefaultVersion = ExcelVersion.Excel2013; // Open existing workbooks with data entered Assembly assembly = typeof(Program).GetTypeInfo().Assembly; Stream fileStream1 = assembly.GetManifestResourceStream("MergeExcelFiles.Owner.xlsx"); IWorkbook workbook1 = application.Workbooks.Open(fileStream1); IWorksheet worksheet = workbook1.Worksheets[0]; Stream fileStream2 = assembly.GetManifestResourceStream("MergeExcelFiles.Sales Manager.xlsx"); IWorkbook workbook2 = application.Workbooks.Open(fileStream2); Stream fileStream3 = assembly.GetManifestResourceStream("MergeExcelFiles.Sales Representative.xlsx"); IWorkbook workbook3 = application.Workbooks.Open(fileStream3); // The content in the range A1:C8 from workbook2 and workbook3 is copied to workbook1 int lastRow = worksheet.UsedRange.LastRow; workbook2.Worksheets[0].UsedRange.CopyTo(worksheet.Range[lastRow + 1, 1]); lastRow = worksheet.UsedRange.LastRow; workbook3.Worksheets[0].UsedRange.CopyTo(worksheet.Range[lastRow + 1, 1]); worksheet.UsedRange.AutofitColumns(); // Save the workbook workbook1.SaveAs("Output.xlsx"); }
VB.NET
'Initialize ExcelEngine Using excelEngine As ExcelEngine = New ExcelEngine() 'Initialize Application Dim application As IApplication = excelEngine.Excel 'Set default application version application.DefaultVersion = ExcelVersion.Excel2013 'Open existing workbooks with data entered Dim assembly As Assembly = GetType(Program).GetTypeInfo.Assembly Dim fileStream1 As Stream = assembly.GetManifestResourceStream("MergeExcelFiles.Owner.xlsx") Dim workbook1 As IWorkbook = application.Workbooks.Open(fileStream1) Dim worksheet As IWorksheet = workbook1.Worksheets(0) Dim fileStream2 As Stream = assembly.GetManifestResourceStream("MergeExcelFiles.Sales Manager.xlsx") Dim workbook2 As IWorkbook = application.Workbooks.Open(fileStream2) Dim fileStream3 As Stream = assembly.GetManifestResourceStream("MergeExcelFiles.Sales Representative.xlsx") Dim workbook3 As IWorkbook = application.Workbooks.Open(fileStream3) 'The content in the range A1:C8 from workbook2 and workbook3 is copied to workbook1 Dim lastRow As Integer = worksheet.UsedRange.LastRow workbook2.Worksheets(0).UsedRange.CopyTo(worksheet.Range((lastRow + 1), 1)) lastRow = worksheet.UsedRange.LastRow workbook3.Worksheets(0).UsedRange.CopyTo(worksheet.Range((lastRow + 1), 1)) worksheet.UsedRange.AutofitColumns() 'Save the workbook workbook1.SaveAs("Output.xlsx") End Using
CopyTo(IRange,ExcelCopyRangeOptions)
CopyTo(IRange,Boolean)
CopyTo(IRange,ExcelCopyRangeOptions,Boolean)
A complete working example to merge or combine multiple Excel files along with the input files used can be downloaded from Merge Excel files.zip.
CopyTo() method copies the range to the specified destination range. CopyTo() method has four overloads to merge or combine multiple Excel files whose API references are as follows:
The input files used in this sample look like:
Input file
By executing the program, you will get the output Excel file as shown below.
Output Excel document
Take a moment to peruse the documentation where you can find basic Excel document processing options along with the features like import and export data, chart, formulas, conditional formatting, data validation, tables, pivot tables and protect the Excel documents, and most importantly, the PDF, CSV and Image conversions with code examples.
Refer here to explore the rich set of Syncfusion® Excel (XlsIO) library features.
See Also:
Split single Excel file into multiple Excel files
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 the link to learn about generating and registering Syncfusion® license key in your application to use the components without a trial message.
Conclusion
I hope you enjoyed learning about how to merge or combine multiple WinForms Excel files in C#, VB.NET.
You can refer to our XIsIO’s feature tour page to learn about its other groundbreaking features. Explore our UG documentation and online demos to understand how to manipulate data in Excel documents.
If you are an existing user, you can access our latest components from the License and Downloads page. For new users, you can try our 30-day free trial to check out XlsIO and other Syncfusion components.
If you have any queries or require clarification, please let us know in the comments below or contact us through our support forums, Support Tickets, or feedback portal. We are always happy to assist you!