Importing Excel XLSX Spreadsheets into TX Text Control in ASP.NET Core and Windows Forms in C#
TX Text Control is able to import Excel documents by converting spreadsheets into tables. This article shows how to import spreadsheets programmatically.

All .NET products of TX Text Control including ASP.NET (Core), Windows Forms and WPF provide an Excel XLSX SpreadsheetML filter to import spreadsheets into a document. Spreadsheets included in an Excel document can be imported and converted into a "smart" table including supported formulas, cell number format settings and the included formatting.
Importing Spreadsheets
In order to load spreadsheets from XLSX files into TX Text Control, all file load methods can be utilized including:
- Load
- Selection.
Load - Append
This allows the insertion of spreadsheets into a new document, into the current input position or at a new section or page. The spreadsheets can be loaded from physical files, byte arrays or streams.
The Document
TXTextControl.LoadSettings ls = new TXTextControl.LoadSettings() {
DocumentPartName = "2021"
};
textControl1.Selection.Load("cashflow.xlsx", TXTextControl.StreamType.SpreadsheetML, ls);
The following screenshot shows the spreadsheet 2021 opened in Microsoft Excel. This name is used in the DocumentPartName property.
After importing the spreadsheet into TX Text Control, you can see the imported formatting, the table cell format and the working formulas:
Reference Styles
TX Text Control provides two reference styles to reference cells for formulas: A1 and R1C1.
Loading Multiple Spreadsheets
The following code shows how to load multiple spreadsheets into TX Text Control by calling the Selection.Load multiple times:
private void ImportSpreadsheets(string filename, string[] sheetNames) {
foreach (string sheetName in sheetNames) {
TXTextControl.LoadSettings ls = new TXTextControl.LoadSettings() {
DocumentPartName = sheetName
};
textControl1.Selection.Load(filename, TXTextControl.StreamType.SpreadsheetML, ls);
}
}
ImportSpreadsheets("cashflow.xlsx", new string[] { "2021", "2022" });
The following screenshot animation shows the working formulas when changing the associated cell content.
ASP.NET
Integrate document processing into your applications to create documents such as PDFs and MS Word documents, including client-side document editing, viewing, and electronic signatures.
- Angular
- Blazor
- React
- JavaScript
- ASP.NET MVC, ASP.NET Core, and WebForms
Related Posts
Loading and Processing Excel XLSX Spreadsheet Tables into TX Text Control…
TX Text Control provides a powerful API to load and process Excel spreadsheet tables in .NET applications. This article shows how to load an Excel file and process the tables using TX Text Control…
Import and Manipulate Excel Spreadsheets by Converting Cells into Merge…
You can import Microsoft Excel spreadsheets and convert them into smart tables, complete with formulas and formatting. This article shows how to import a spreadsheet and programmatically convert…