Spire.XLS 14.10.2 supports ARRAYTOTEXT, ARABIC, BASE, COMBINA, XOR formulas
2024-10-31 05:49:33
We're pleased to announce the release of Spire.XLS 14.10.2. This version supports ARRAYTOTEXT, ARABIC, BASE, COMBINA, XOR formulas, and also supports embedding images into cells as well as getting a cell's NamedRange. What’s more, the issues that occurred when converting Excel to PDF, retrieving number of pages, and exporting data has been successfully resolved. More details are shown below. Here is a list of changes made in this release Category ID Description New feature SPIREXLS-5350 MarkerDesigner now supports applying filter value parameters. New feature SPIREXLS-5396 ARRAYTOTEXT formula has been supported. Workbook workbook = new Workbook(); workbook.Worksheets[0].Range["A1"].Text = "True"; workbook.Worksheets[0].Range["A2"].Text =…
Spire.XLS 14.9.5 supports adding filters to row fields/column fields of pivot tables
2024-09-27 08:35:49
We are excited to announce the release of Spire.XLS 14.9.5. The latest version supports adding filters to row fields/column fields of pivot tables. Furthermore, some known bugs are successfully fixed in this update, such as the issue that the content is incorrect when converting Excel documents to images. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREXLS-5255 Supports adding filters to row fields/column fields of pivot tables. XlsPivotTable pt1 = workbook.Worksheets["PivotTable_1"].PivotTables[0] as XlsPivotTable; pt1.RowFields[0].AddValueFilter(PivotValueFilterType.Between, pt1.DataFields[0], 100000, 1000000); pt1.ColumnFields[0].AddValueFilter(PivotValueFilterType.Between, pt1.DataFields[0], 100000, 1000000); pt1.CalculateData(); New feature SPIREXLS-5393 Supports the TEXTBEFORE…
Spire.XLS 14.9.1 supports identify OLE objects in Msg format
2024-09-06 08:49:19
We are happy to announce the release of Spire.XLS 14.9.1. This version supports identify OLE objects in Msg format and disabling DTD processing. It also implements the support for the BAHTTEXT formula. Moreover, some known issues are fixed successfully in this version, such as the issue that the result of data summing using MarkerDesigner function was incorrect. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREXLS-5307 Adds the 'OleObjectType.Msg' type to identify OLE objects in Msg format. Workbook wb = new Workbook(); wb.LoadFromFile(inputFile); Worksheet sheet =wb.Worksheets[0]; OleObjectType type;…
Spire.XLS 14.8.2 supports enabling revision mode
2024-08-15 06:37:42
We are excited to announce the release of Spire.XLS 14.8.2. This version supports enabling revision mode and setting global custom font folders. What’s more, some known bugs are fixed in this update, such as the issue that the checkbox was not converted to image format when converting Excel to PDF. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREXLS-5254 Supports enabling revision mode. Workbook.TrackedChanges=true;//default value is false New feature SPIREXLS-5348 Supports setting global custom font folders. Workbook.SetGlobalCustomFontsFolders(string[] fontPath); Bug SPIREXLS-5196 Fixes the issue that the checkbox was not…
Spire.XLS 14.7.2 supports obtaining custom properties of worksheets
2024-07-15 03:38:45
We're pleased to announce the release of Spire.XLS 14.7.2. This version supports obtaining the custom properties of a worksheet and the original document name of the embedded OLE object. What’s more, the issues that occurred when converting Excel to image and PDF has been successfully resolved. More details are shown below. Here is a list of changes made in this release Category ID Description New feature SPIREXLS-5274 Supports obtaining custom properties of worksheets. Workbook workbook = new Workbook (); workbook.LoadFromFile("funds-test.xlsx"); ICustomPropertiesCollection customProperties = workbook.Worksheets[0].CustomProperties; for (int i = 0; i < customProperties.Count; i++) { XlsCustomProperty xcp = customProperties[i]; string name…
Spire.XLS 14.6.6 supports converting Excel to Markdown format
2024-06-25 08:11:20
We're pleased to announce the release of Spire.XLS 14.6.6. This version supports converting Excel to Markdown format, and fixes some issues that occurred when converting Excel to image/HTML, and adding filter to Excel PivotTable. More details are shown below. Here is a list of changes made in this release Category ID Description New feature - Supports converting Excel to Markdown format. Workbook workbook = new Workbook(); workbook.LoadFromFile("input.xlsx"); workbook.SaveToFile("output.md",FileFormat.Markdown); Bug SPIREXLS-5191 Fixes the issue that the application threw "ArgumentOutOfRangeException" when setting "horizontal" and "vertical" type borders. Bug SPIREXLS-5243 Fixes the issue that the effect was incorrect when calling "Worksheet.Activate()" method. Bug…
Spire.XLS 14.5.3 supports adding images to the first page header and footer
2024-05-23 09:37:40
We're pleased to announce the release of Spire.XLS 14.5.3. This version supports adding images to the first page header and footer, obtaining active selection range, as well as finding cells based on regular expressions. In addition, some known issues that occurred when converting Excel to PDF/ images, importing data into Excel, and autofitting columns have been successfully fixed. More details are shown below. Here is a list of changes made in this release Category ID Description New feature SPIREXLS-5128 Supports adding images to the first page header and footer. //Load image System.Drawing.Image bufferedImage = System.Drawing.Image.FromFile(inputFile_Img); //Set image on first page…
Spire.XLS 14.3.3 supports PivotTable grouping functionality
2024-03-18 02:51:50
We are pleased to announce the release of Spire.XLS 14.3.3. This version supports PivotTable grouping functionality. In addition, it also supports adding the FindAll() method to CellRange and setting "Repeat All Item Labels" for PivotTable. Some known issues have also been successfully fixed in this version, such as the issue that the content was incorrect after saving Excel files. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREXLS-765 Supports PivotTable grouping function. XlsPivotTable pt = worksheet.PivotTables[0] as XlsPivotTable; IPivotField field = pt.RowFields[0]; DateTime start = new DateTime(2024, 5,…