Commit 5725bb0c authored by Alexander.Trofimov's avatar Alexander.Trofimov

fix check values with string type in AVERAGEA function, delete use parseNum

parent cd8842fc
...@@ -55,7 +55,6 @@ ...@@ -55,7 +55,6 @@
var cFormulaFunctionGroup = AscCommonExcel.cFormulaFunctionGroup; var cFormulaFunctionGroup = AscCommonExcel.cFormulaFunctionGroup;
var _func = AscCommonExcel._func; var _func = AscCommonExcel._func;
var parseNum = AscCommonExcel.parseNum;
var matching = AscCommonExcel.matching; var matching = AscCommonExcel.matching;
var maxGammaArgument = 171.624376956302; var maxGammaArgument = 171.624376956302;
...@@ -494,9 +493,6 @@ ...@@ -494,9 +493,6 @@
sum = _func[sum.type][_argV.type](sum, _argV, "+"); sum = _func[sum.type][_argV.type](sum, _argV, "+");
count++; count++;
} else if (cElementType.string === _argV.type) { } else if (cElementType.string === _argV.type) {
if (parseNum(_argV.getValue())) {
sum = _func[sum.type][_argV.type](sum, _argV.tocNumber(), "+");
}
count++; count++;
} }
} else if (cElementType.cellsRange === _arg.type || cElementType.cellsRange3D === _arg.type) { } else if (cElementType.cellsRange === _arg.type || cElementType.cellsRange3D === _arg.type) {
...@@ -507,9 +503,6 @@ ...@@ -507,9 +503,6 @@
sum = _func[sum.type][__arg.type](sum, __arg, "+"); sum = _func[sum.type][__arg.type](sum, __arg, "+");
count++; count++;
} else if (cElementType.string === __arg.type) { } else if (cElementType.string === __arg.type) {
if (parseNum(__arg.getValue())) {
sum = _func[sum.type][__arg.type](sum, __arg.tocNumber(), "+");
}
count++; count++;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment