]> source.dussan.org Git - poi.git/commitdiff
Bug #56822 fix COUNTIFS()
authorGreg Woolsey <gwoolsey@apache.org>
Tue, 14 Feb 2017 22:13:48 +0000 (22:13 +0000)
committerGreg Woolsey <gwoolsey@apache.org>
Tue, 14 Feb 2017 22:13:48 +0000 (22:13 +0000)
Looks like at some point the function got added twice to the function instance map, once as null, later as the implementation.

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1783038 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/ss/formula/atp/AnalysisToolPak.java

index ad3be2fb4021b62d4d9f187984d5bb340a449c1d..df99b1070702583a1af4715348791a1bea08d05a 100644 (file)
@@ -96,7 +96,7 @@ public final class AnalysisToolPak implements UDFFinder {
         r(m, "BIN2OCT", null);
         r(m, "COMPLEX", Complex.instance);
         r(m, "CONVERT", null);
-        r(m, "COUNTIFS", null);
+        r(m, "COUNTIFS", Countifs.instance);
         r(m, "COUPDAYBS", null);
         r(m, "COUPDAYS", null);
         r(m, "COUPDAYSNC", null);
@@ -188,7 +188,6 @@ public final class AnalysisToolPak implements UDFFinder {
         r(m, "YIELD", null);
         r(m, "YIELDDISC", null);
         r(m, "YIELDMAT", null);
-        r(m, "COUNTIFS", Countifs.instance);
 
         return m;
     }