diff --git a/poi/src/main/java/org/apache/poi/ss/formula/functions/Sumproduct.java b/poi/src/main/java/org/apache/poi/ss/formula/functions/Sumproduct.java index 8e1e6f81c2..9345517d76 100644 --- a/poi/src/main/java/org/apache/poi/ss/formula/functions/Sumproduct.java +++ b/poi/src/main/java/org/apache/poi/ss/formula/functions/Sumproduct.java @@ -51,6 +51,12 @@ import org.apache.poi.ss.formula.eval.ValueEval; * An(i,j) * ) * ) + * + *
+ * The current implementation does not support the more advanced use cases of SUMPRODUCT, including
+ * SUMPRODUCT((B2:B9=B12)*(C2:C9=C12)*D2:D9)
(see example 3 in
+ * https://support.microsoft.com/en-us/office/sumproduct-function-16753e75-9f68-4874-94ac-4d2145a2fd2e).
+ *