]> source.dussan.org Git - poi.git/commitdiff
support DCOUNTA function
authorPJ Fanning <fanningpj@apache.org>
Thu, 26 May 2022 13:48:30 +0000 (13:48 +0000)
committerPJ Fanning <fanningpj@apache.org>
Thu, 26 May 2022 13:48:30 +0000 (13:48 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1901290 13f79535-47bb-0310-9956-ffa450edef68

poi/src/main/java/org/apache/poi/ss/formula/eval/FunctionEval.java
poi/src/main/java/org/apache/poi/ss/formula/functions/DCount.java
poi/src/main/java/org/apache/poi/ss/formula/functions/DCountA.java [new file with mode: 0644]
poi/src/main/java/org/apache/poi/ss/formula/functions/DStarRunner.java
poi/src/test/java/org/apache/poi/ss/formula/functions/TestDCount.java
poi/src/test/java/org/apache/poi/ss/formula/functions/TestDCountA.java [new file with mode: 0644]

index 32750a6b0ea7939457e39a3242375408608e3a93..aa03d7e4f29e2f04581cff9bca56887913ed844e 100644 (file)
@@ -210,7 +210,7 @@ public final class FunctionEval {
         retval[196] = new DStarRunner(DStarRunner.DStarAlgorithmEnum.DVARP);
         retval[197] = NumericFunction.TRUNC;
         retval[198] = LogicalFunction.ISLOGICAL;
-        // 199: DCOUNTA
+        retval[199] = new DStarRunner(DStarRunner.DStarAlgorithmEnum.DCOUNTA);
 
         //204: USDOLLAR (YEN in BIFF3)
         //205: FINDB
index c2ea0ebeb8a907cade964d27092cc4a9ef5ffa25..47010a36babe5e7c8dc608b32961b8f6b1545437 100644 (file)
@@ -23,7 +23,7 @@ import org.apache.poi.ss.formula.eval.ValueEval;
 
 /**
  * Implementation of the DCount function:
- * Counts the value of a column in an area with given conditions.
+ * Counts the number of numeric cells in a column in an area with given conditions.
  */
 public final class DCount implements IDStarAlgorithm {
     private long count;
diff --git a/poi/src/main/java/org/apache/poi/ss/formula/functions/DCountA.java b/poi/src/main/java/org/apache/poi/ss/formula/functions/DCountA.java
new file mode 100644 (file)
index 0000000..6b9cc27
--- /dev/null
@@ -0,0 +1,49 @@
+/* ====================================================================
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+==================================================================== */
+
+package org.apache.poi.ss.formula.functions;
+
+import org.apache.poi.ss.formula.eval.BlankEval;
+import org.apache.poi.ss.formula.eval.NumberEval;
+import org.apache.poi.ss.formula.eval.NumericValueEval;
+import org.apache.poi.ss.formula.eval.ValueEval;
+
+/**
+ * Implementation of the DCountA function:
+ * Counts the number of non-blank cells in a column in an area with given conditions.
+ */
+public final class DCountA implements IDStarAlgorithm {
+    private long count;
+
+    @Override
+    public boolean processMatch(ValueEval eval) {
+        if (!(eval instanceof BlankEval)) {
+            count++;
+        }
+        return true;
+    }
+
+    @Override
+    public ValueEval getResult() {
+        return new NumberEval(count);
+    }
+
+    @Override
+    public boolean allowEmptyMatchField() {
+        return true;
+    }
+}
index 5a3fbfbdea7343f55c51ce56c18d38a4caa29e46..1ab9c54d2914cefb25ad75f63b93af7b2c76c5e6 100644 (file)
@@ -59,6 +59,8 @@ public final class DStarRunner implements Function3Arg {
         DSUM(DSum::new),
         /** @see DCount */
         DCOUNT(DCount::new),
+        /** @see DCountA */
+        DCOUNTA(DCountA::new),
         /** @see DAverage */
         DAVERAGE(DAverage::new),
         /** @see DStdev */
index 31888498ee3c72b8a6b2818493c9d94165ad2e6f..a75d1ca22c7c6de1e3aec6a3bc01036932087080 100644 (file)
@@ -43,6 +43,9 @@ public class TestDCount {
             assertDouble(fe, cell, "DCOUNT(A5:E11, \"Age\", A1:A2)", 2);
             assertDouble(fe, cell, "DCOUNT(A5:E11, \"Age\", A1:F2)", 1);
             assertDouble(fe, cell, "DCOUNT(A5:E11, 3, A1:F2)", 1);
+            assertDouble(fe, cell, "DCOUNT(A5:E11, 2, A1:F3)", 4);
+            assertDouble(fe, cell, "DCOUNT(A5:E11, 3, A1:F3)", 3);
+            assertDouble(fe, cell, "DCOUNT(A5:E11, 5, A1:F3)", 3);
         }
     }
 
@@ -58,7 +61,7 @@ public class TestDCount {
         addRow(sheet, 6, "Pear", 12, 12, 10, 96);
         addRow(sheet, 7, "Cherry", 13, 14, 9, 105);
         addRow(sheet, 8, "Apple", 14, null, 10, 75);
-        addRow(sheet, 9, "Pear", 9, 8, 8, 77);
+        addRow(sheet, 9, "Pear", 9, 8, 8, "$77");
         addRow(sheet, 10, "Apple", 12, 11, 6, 45);
         return wb;
     }
diff --git a/poi/src/test/java/org/apache/poi/ss/formula/functions/TestDCountA.java b/poi/src/test/java/org/apache/poi/ss/formula/functions/TestDCountA.java
new file mode 100644 (file)
index 0000000..85ee0ff
--- /dev/null
@@ -0,0 +1,66 @@
+
+/* ====================================================================
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+==================================================================== */
+package org.apache.poi.ss.formula.functions;
+
+import org.apache.poi.hssf.usermodel.HSSFCell;
+import org.apache.poi.hssf.usermodel.HSSFFormulaEvaluator;
+import org.apache.poi.hssf.usermodel.HSSFSheet;
+import org.apache.poi.hssf.usermodel.HSSFWorkbook;
+import org.junit.jupiter.api.Test;
+
+import java.io.IOException;
+
+import static org.apache.poi.ss.util.Utils.addRow;
+import static org.apache.poi.ss.util.Utils.assertDouble;
+
+/**
+ * Testcase for function DCOUNTA()
+ */
+public class TestDCountA {
+
+    //https://support.microsoft.com/en-us/office/dcounta-function-00232a6d-5a66-4a01-a25b-c1653fda1244
+    @Test
+    void testMicrosoftExample1() throws IOException {
+        try (HSSFWorkbook wb = initWorkbook1()) {
+            HSSFFormulaEvaluator fe = new HSSFFormulaEvaluator(wb);
+            HSSFCell cell = wb.getSheetAt(0).getRow(0).createCell(100);
+            assertDouble(fe, cell, "DCOUNTA(A4:E10, \"Profit\", A1:F2)", 1);
+            assertDouble(fe, cell, "DCOUNTA(A4:E10, 5, A1:F2)", 1);
+            assertDouble(fe, cell, "DCOUNTA(A4:E10, , A1:F2)", 1);
+            assertDouble(fe, cell, "DCOUNTA(A4:E10, \"Profit\", A1:F2)", 1);
+            assertDouble(fe, cell, "DCOUNTA(A4:E10, \"Profit\", A1:F3)", 3);
+            assertDouble(fe, cell, "DCOUNTA(A4:E10, \"Age\", A1:F3)", 2);
+        }
+    }
+
+    private HSSFWorkbook initWorkbook1() {
+        HSSFWorkbook wb = new HSSFWorkbook();
+        HSSFSheet sheet = wb.createSheet();
+        addRow(sheet, 0, "Tree", "Height", "Age", "Yield", "Profit", "Height");
+        addRow(sheet, 1, "=Apple", ">10", null, null, null, "<16");
+        addRow(sheet, 2, "=Pear");
+        addRow(sheet, 3, "Tree", "Height", "Age", "Yield", "Profit");
+        addRow(sheet, 4, "Apple", 18, 20, 14, 105);
+        addRow(sheet, 5, "Pear", 12, 12, 10, 96);
+        addRow(sheet, 6, "Cherry", 13, 14, 9, 105);
+        addRow(sheet, 7, "Apple", 14, null, 10, 75);
+        addRow(sheet, 8, "Pear", 9, 8, 8, "$77");
+        addRow(sheet, 9, "Apple", 8, 9, 6, 45);
+        return wb;
+    }
+}