Browse Source
Merge pull request #35 from danielcai1987/master
IRR公式,需要过滤范围单元格中的null空值.
good job!
master
mengshukeji
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/function/functionImplementation.js
|
|
|
@ -15806,7 +15806,7 @@ const functionImplementation = { |
|
|
|
values = values.concat(func_methods.getDataArr(data_values, false)); |
|
|
|
} |
|
|
|
else if(getObjType(data_values) == "object" && data_values.startCell != null){ |
|
|
|
values = values.concat(func_methods.getCellDataArr(data_values, "number", false)); |
|
|
|
values = values.concat(func_methods.getCellDataArr(data_values, "number", true)); |
|
|
|
} |
|
|
|
else{ |
|
|
|
values.push(data_values); |
|
|
|
|