TestExcel.xlsx.After import, some formula cells produce different results than Excel when the intermediate result is very close to zero.
Observed example from the attached file:
In Excel:
E1 = 0E2 = 0F1 = 55110.305475240835In Spreadsheet after import:
E1 = 0.00000000004366E2 = 0.000000000043660000000000000000F1 = 0Spreadsheet should match Excel results for the imported workbook, including cases where formulas evaluate to values extremely close to zero.
The issue appears related to formula recalculation after import and handling of floating-point precision near zero.
In the attached file:
The imported numeric inputs are:
A1 = 79590.518373344006B1 = 0.16372664029103301C1 = 4D1 = 82665.458212861093The formula in E1 is:
A1*(1+B1)^(1/C1)-D1Excel stores the result as 0, but Spreadsheet recalculates it to a very small positive number, which then changes the dependent IF result in F1.
TestExcel.xlsx <script>
const CANCELLATION_EPSILON = Number.EPSILON * 4;
function collapseCancellationError(result, left, right) {
const scale = Math.max(Math.abs(left), Math.abs(right));
if (!scale || result === 0) {
return result;
}
return Math.abs(result) <= CANCELLATION_EPSILON * scale ? 0 : result;
}
const { defineFunction } = KendoSpreadsheetCommon;
defineFunction('binary+', function(a, b) {
return collapseCancellationError(a + b, a, b);
}).args([
['*a', ['or', 'number', ['null', 0]]],
['*b', ['or', 'number', ['null', 0]]]
]);
defineFunction('binary-', function(a, b) {
return collapseCancellationError(a - b, a, b);
}).args([
['*a', ['or', 'number', ['null', 0]]],
['*b', ['or', 'number', ['null', 0]]]
]);
</script>Run this dojo - https://dojo.telerik.com/MkKhDjxX
The results are different when using the same values in Excel.
Result comparison for cells with numeric values
| COUNTIF(B5:B9,”<> “) | COUNTIF(B5:B9,”<>11”) | COUNTIF(B5:B9,”*” | COUNTIF(B5:B9,”?3”) | |
| Kendo | 4 | 3 | 4 | 1 |
| Excel | 5 | 4 | 0 | 0 |
Result comparison for cells with text values
| COUNTIF(B12:B16,”<>11”) | COUNTIF(B12:B16,”<>???00”) | |
| Kendo | 3 | 4 |
| Excel | 5 | 1 |
1715542
We're using the kendo spreadsheet with validation.
There's a cell that validates against a list of values.
The list of values can be up to 50 values or so.
It would be beneficial if there is a scrollbar for the dropdown, similar to the Excel behavior.
Borders are persisted
1708030
* **Kendo UI version:** 2025.4.1217
Hi Team,
I would like to request to include the PMT function for the Kendo UI Spreadsheet.
Thank you!
In the Spreadsheet, if you attempt to delete a row that contains a disabled cell, the operation is pushed in the undo stack. Pressing the undo button inserts a copy of the row with empty disabled cell.
A new row is inserted above the selected row, as the unsuccessful delete operation is pushed in the undo stack
The unsuccessful delete operation shouldn't pushed in the undo stack
When you add a filter to a column on the spreadsheet component, only the down arrow icon part of the filter button is clickable, not the entire button.
The filter menu is not opened unless we click on the icon.
The filter menu should open when the button is clicked.
When cell with border is cut in the Spreadsheet, the border is also removed from the next cells.
The cell A2 should have a right border, cell C2 should have a left border, etc...
The next cells borders are cut as well
Bug report
Data validation should not require DATEVALUE("") in Start and End inputs when `Date` is selected
Reproduction of the problem
https://demos.telerik.com/kendo-ui/spreadsheet/index
1. Select an empty cell
2. Click Data validation
3. Set Start: DATEVALUE("1/1/2024") and End: DATEVALUE("2/2/2025")
4. Automatic Hint message looks like: between DATEVALUE("1/1/2024") and End: DATEVALUE("2/2/2025")
Expected
Generated hint message shall not contain DATEVALUE("")
Environment
**Kendo UI version: [all]
**Browser: [all]
Hi Team,
We are using the Kendo Spreadsheet and would like to request a feature to display a character limit indicator while the user is entering data in the cell. This is to prevent users from exceeding the character limit of a cell.
Thank you!
Hi Team,
I would like to request emf image support for the Kendo UI Spreadsheet. If that is not possible, I would like to request a way to handle if the image is in a non-supported image type - such as a console error.
Thank you!
Bug report
Subtotal Function in Spread returns wrong calculation on hidden columns. In Excel hidden columns does not reflect the result
Reproduction of the problem
Expected
Same result as in Excel
Environment
jQuery: 3.4.1
Kendo UI version: 2024.4.1112
Browser: [all]
Hi Team,
I would like to request a built-in way to set a reject type validation when a value is programmatically set in the Kendo UI Spreadsheet. Currently, it only sets a warning type as shown in this Kendo UI Dojo.
Thanks!
When a cell is copied to another cell by using the 'auto-fill' option, the format and validation from the initial cell is applied to the target as well, as described in the documentation.
- https://docs.telerik.com/kendo-ui/controls/spreadsheet/end-user/user-guide#other
I would like the possibility to persist the format and validation of the targeted cell and if for example non-valid data is dragged and dropped in a cell, the content to be rejected based on the targeted cell validation.
Hi Team,
I would like to request to include the Embed function for the Kendo UI Spreadsheet to include objects such as PDF files into the Spreadsheet.
Thank you!
Hi Team,
I would like to request the open button for the Kendo UI Spreadsheet's toolbar to fully utilize a Kendo UI Button rather than a native input button. One benefit would be to help provide a localization message with ease.
Thank you!
When trying to import an Excel document into the Kendo UI Spreadsheet with a missing/corrupt image reference, the file will not show.
The Kendo UI Spreadsheet fails to load the document.
The Kendo UI Spreadsheet should handle the error and load the Spreadsheet data without the image.