Completed
Last Updated: 10 Nov 2020 11:16 by ADMIN
Release R1 2021
Exception when importing a file with a specific print area.
Completed
Last Updated: 23 Oct 2020 07:05 by ADMIN
Release R3 2020 SP1
Removing a row causes the last row of the sheet to copy its styling from the first row. This happens because the compressed lists translate the values of the cells up and do not take into account that its the end of the sheet.
Completed
Last Updated: 16 Sep 2020 12:44 by ADMIN
Release R3 2020
ADMIN
Created by: Deyan
Comments: 6
Category: SpreadProcessing
Type: Feature Request
41

			
Completed
Last Updated: 16 Sep 2020 12:41 by ADMIN
Release R3 2020
Created by: Dimitar
Comments: 2
Category: SpreadProcessing
Type: Bug Report
1

To reproduce: 

- Add the following formula to a cell: "=A1=FALSE"

Actual: the result is always false

Expected: the result should be true when the cell is empty

 

Workaround: Use the ISBLANK function.

Unplanned
Last Updated: 04 Sep 2020 06:04 by ADMIN
Exporting a sheet in a workbook, results in clearly narrower column widths, this doesn't appear to be a scaling issue as letters that extend outside of a cell are occluded differently from the Excel document. Also worth noting, borders adjacent to the margin area are clipped (not an issue when exporting the same PDF from excel), text padding in the cell is not the same as the Excel document, and borders disappear unexpectedly on some text cells 
Unplanned
Last Updated: 31 Aug 2020 06:14 by ADMIN

Handle the case where the formula starts with "=+". Detailed information: https://professor-excel.com/equal-plus-excel-formulas/

Workaround: replace the "=+" with "="

CellRange usedCellRange = workbook.Worksheets[0].UsedCellRange;

for (int rowIndex = usedCellRange.FromIndex.RowIndex; rowIndex <= usedCellRange.ToIndex.RowIndex; rowIndex++)
{
    for (int columnIndex = usedCellRange.FromIndex.ColumnIndex; columnIndex <= usedCellRange.ToIndex.ColumnIndex; columnIndex++)
    {
        CellSelection cell = workbook.Worksheets[0].Cells[rowIndex, columnIndex];
       

        FormulaCellValue formulaCellValue =cell.GetValue().Value as FormulaCellValue;
        if (formulaCellValue == null)
        {
            continue;
        }
        CellValueFormat format = cell.GetFormat().Value;
        string resultValueAsString = formulaCellValue.GetValueAsString(format);
        Console.WriteLine(resultValueAsString);
        if (resultValueAsString.StartsWith("=+"))
        {
            resultValueAsString = resultValueAsString.Remove(1, 1);
            cell.SetValue(resultValueAsString);
        }
    }
}
radSpreadsheet.Workbook = workbook;

 

Completed
Last Updated: 21 Aug 2020 10:19 by ADMIN
Release R3 2020
Exception when the sheet name contains a single letter 
Unplanned
Last Updated: 20 Aug 2020 06:45 by ADMIN
The filter icon is shown in merged cells after import export
Unplanned
Last Updated: 19 Aug 2020 13:51 by ADMIN
Currently, the text orientation for cell content is not exported when exporting to PDF format.
Completed
Last Updated: 29 Jul 2020 14:41 by ADMIN
Release R3 2020
Wrongly exported image size when the size of the image is different than the original image size in .NET Standard.
Unplanned
Last Updated: 24 Jul 2020 11:25 by ADMIN
Currently, if there is an unsupported feature in the imported document it is stripped and not preserved in the document model (the Workbook). When exporting the Workbook the resulting document contains only the supported features.
Unplanned
Last Updated: 15 Jul 2020 16:37 by ADMIN

Hi Telerik,

 

I would like to request 1 feature to be added in Current RADGRID control which is to exporting grid data to into Excel 2016 version.

We need this feature because one of our supporting application will work only with  Excel 2016 version, where as the current RADGRID conversion only able to export to EXCEL 2007 (excel 12) format.

 

Thank you.

 

 

Unplanned
Last Updated: 13 Jul 2020 12:20 by ADMIN
According to the Open XML documentation, the possible max value for this attribute is an unsignedInt or 4294967295.
Unplanned
Last Updated: 09 Jul 2020 06:22 by ADMIN
Created by: George
Comments: 0
Category: SpreadProcessing
Type: Feature Request
4
Microsoft Excel supports 2 types of date. Date is the number of days starting from 1/1/1900 or 1/1/1904. The first one is the default the second one has been added cause Macintosh supports it. The Microsoft library supports both of them and you can choose programmatically which one you prefer (https://docs.microsoft.com/en-us/dotnet/api/microsoft.office.interop.excel._workbook.date1904?view=excel-pia). Expose such an option in SpreadProcessing as well.
Completed
Last Updated: 03 Jul 2020 10:28 by ADMIN
Release R3 2020
The Office Open XML model doesn't support the transparency of the colors inside a document. Even if an alpha channel is used for the colors, this should not be respected by SpreadProcessing and the colors should be without any opacity.
Completed
Last Updated: 03 Jul 2020 09:55 by ADMIN
Release R3 2020
Created by: Luke
Comments: 1
Category: SpreadProcessing
Type: Feature Request
0
When importing a spreadsheet document whose cells use a style that is not defined in the document stylesheet, a KeyNotFoundException is thrown. The style can be just skipped so that the document can be imported without errors.
Completed
Last Updated: 02 Jul 2020 12:01 by ADMIN
Release R3 2020
When a formula contains new lines, it is parsed incorrectly as follows:

- When it is shared formula it breaks the imported expression and replaces it with #NAME? error.
- In normal case it simply preserves the formula string converting it to StringExpression.

Workaround: Remove the new lines in the formulas.

Have in mind that this code will fix the issue only for the second scenario, when the formula is not shared.

CellRange usedCellRange = workbook.ActiveWorksheet.UsedCellRange;

for (int row = usedCellRange.FromIndex.RowIndex; row < usedCellRange.ToIndex.RowIndex; row++)
{
    for (int column = usedCellRange.FromIndex.ColumnIndex; column < usedCellRange.ToIndex.ColumnIndex; column++)
    {
        CellSelection cell = workbook.ActiveWorksheet.Cells[row, column];
        ICellValue value = cell.GetValue().Value;

        if (value.RawValue.Contains("\n"))
        {
            cell.SetValue(value.RawValue.Replace('\n', ' '));
        }
    }
}
Unplanned
Last Updated: 26 Jun 2020 07:11 by ADMIN
The chart axes are not correctly imported when there are floating and sheet charts
Completed
Last Updated: 22 Jun 2020 14:39 by ADMIN
Release R3 2020
Currently, the calculation of the actual ScaleFactor is based only on Worksheet`s UsedCellRange.
Unplanned
Last Updated: 22 Jun 2020 12:51 by ADMIN
The content of the merged cells is measured and affects the CenterHorizontally behavior. Only the first cell from the merged range should have content. This is the default behavior in MS excel when cells are merged as well.