Unplanned
Last Updated: 18 Aug 2022 12:45 by Daniel
SpreadProcessing: XlsFormatProvider. Exception when importing a specific document - bad function index (188)
Unplanned
Last Updated: 18 Aug 2022 14:08 by Daniel
Created by: Daniel
Comments: 0
Category: SpreadProcessing
Type: Feature Request
1
Add support for the  CELL formula.
Completed
Last Updated: 05 Nov 2019 14:58 by ADMIN
Release LIB 2019.3.1111 (11/11/2019)
The exception is thrown when importing a document that contains a not supported BuiltInNumberFormat.
Completed
Last Updated: 15 May 2023 07:03 by ADMIN
Release R1 2023
Wrong color scheme colors leads to wrong cell coloring on export.
Completed
Last Updated: 06 Sep 2022 07:12 by ADMIN
Release R3 2022
Exception when the comments are imported before the fallback notes.
Unplanned
Last Updated: 20 Feb 2020 11:53 by ADMIN
The colors of the charts are determined by the theme in the default scenario. However, customers can apply any color to the series and the legend respectively. In such cases, RadSpreadProcessing doesn't import the custom colors and uses the ones defined by the theme.
Completed
Last Updated: 24 Jan 2023 10:29 by ADMIN
Release R3 2022 SP1
Text is cut off in Net Standard with a specific document.
Unplanned
Last Updated: 24 Aug 2022 10:50 by Christopher
Created by: Christopher
Comments: 0
Category: SpreadProcessing
Type: Feature Request
1

Currently, the following text filters are not supported in the model:

  • begins with
  • does not begin with
  • ends with
  • does not end with
  • contains
  • does not contain
Unplanned
Last Updated: 02 Mar 2023 07:40 by ADMIN
Created by: Lee
Comments: 2
Category: SpreadProcessing
Type: Feature Request
1
Currently, adding hyperlinks to images is not supported.
Unplanned
Last Updated: 18 Aug 2022 14:10 by Daniel
 A long formula is wrongly parsed when importing a particular file.
Unplanned
Last Updated: 04 Aug 2017 15:03 by ADMIN
There are scenarios when the default value of the columns is changed and may be different from 65. However, RadSpreadprocessing always exports the non-custom column values as 65.

WORKAROUND: After importing the XLSX file you may make all columns to have custom values in order to preserve the column widths after the export. The following code snippet shows how this may be achieved for some Worksheet instance:

CellRange usedRange = worksheet.UsedCellRange;

for (int i = 0; i < usedRange.ColumnCount; i++)
{
    ColumnSelection column = worksheet.Columns[i];
    double width = column.GetWidth().Value.Value;
    column.SetWidth(new ColumnWidth(width, true));
}
Unplanned
Last Updated: 03 Dec 2020 09:51 by ADMIN
Created by: Dimitar
Comments: 0
Category: SpreadProcessing
Type: Feature Request
0

Add support for the EDATE function.

Use the attached custom function as a workaround.

Completed
Last Updated: 09 Dec 2020 15:50 by ADMIN
Release R1 2021
An InvalidOperationException is thrown when importing XLS document containing Extra Table Data record.
Completed
Last Updated: 10 Dec 2020 14:37 by ADMIN
Release R1 2021
Exporting a workbook that has a data validation rule applied on a cell with hyperlink inside results in an invalid spreadsheet document. Trying to open the result in MS Excel, an error appears and letting Excel repair the content results in a missing worksheet.
Unplanned
Last Updated: 23 Jul 2024 08:28 by Valery

Optimize font fallback mechanism.

Currently, in NET Standard, if no fonts are provided on PDF export, while resolving the fonts the application falls back to different fonts multiple times for each cell which causes a decrease in performance.

Completed
Last Updated: 02 Aug 2024 11:09 by ADMIN
Release 2024.3.802 (2024 Q3)
FormatException is thrown when getting the formatted cell value as string using "H" format.
Completed
Last Updated: 02 Aug 2024 11:09 by ADMIN
Release 2024.3.802 (2024 Q3)
When importing a xlsm document, an error occurs: "The axes are incorrectly paired." 
            string fileName = "file.xlsm"; 
            Telerik.Windows.Documents.Spreadsheet.Model.Workbook workbook;
            IWorkbookFormatProvider formatProvider = new Telerik.Windows.Documents.Spreadsheet.FormatProviders.OpenXml.Xlsm.XlsmFormatProvider();

            using (Stream input = new FileStream(fileName, FileMode.Open))
            {
                workbook = formatProvider.Import(input);
            }
Completed
Last Updated: 09 Feb 2021 08:42 by ADMIN
Release R1 2021 SP1
Created by: Joshua
Comments: 1
Category: SpreadProcessing
Type: Bug Report
0
Clearing an entire row is too slow.
Unplanned
Last Updated: 27 May 2019 15:48 by ADMIN
Sometimes the customers need to obtain the result of a formula without adding it as a value to a specific cell.
Unplanned
Last Updated: 06 Jun 2024 12:52 by Development

Currently, these are the supported image formats:

If we try to import an Excel document containing an image with another format, the following error occurs:

System.Collections.Generic.KeyNotFoundException: 'The given key was not present in the dictionary.'