diff --git a/Base/res/js/Spreadsheet/runtime.js b/Base/res/js/Spreadsheet/runtime.js index d7b1c439a4..12f8195c20 100644 --- a/Base/res/js/Spreadsheet/runtime.js +++ b/Base/res/js/Spreadsheet/runtime.js @@ -431,7 +431,7 @@ function numericReduce(op, accumulator, cells) { } function numericResolve(cells) { - return resolve(cells).map(val => parseInt(val)); + return resolve(cells).map(val => parseFloat(val)); } function resolve(cells) {