mirror of https://github.com/apache/poi.git
[bug-49202] add PERCENTRANK function
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1892078 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bb515fdc30
commit
fc83c4929e
|
@ -89,6 +89,9 @@ public final class PercentRank implements Function {
|
|||
try {
|
||||
ValueEval ev = OperandResolver.getSingleValue(args[2], srcRowIndex, srcColumnIndex);
|
||||
significance = OperandResolver.coerceValueToInt(ev);
|
||||
if (significance < 1) {
|
||||
return ErrorEval.NUM_ERROR;
|
||||
}
|
||||
} catch (EvaluationException e) {
|
||||
return e.getErrorEval();
|
||||
}
|
||||
|
|
|
@ -57,6 +57,7 @@ public class TestPercentRank {
|
|||
confirmErrorResult(fe, cell, "PERCENTRANK(A2:A11,0)", FormulaError.NA);
|
||||
confirmErrorResult(fe, cell, "PERCENTRANK(A2:A11,100)", FormulaError.NA);
|
||||
confirmErrorResult(fe, cell, "PERCENTRANK(B2:B11,100)", FormulaError.NUM);
|
||||
confirmErrorResult(fe, cell, "PERCENTRANK(A2:A11,8,0)", FormulaError.NUM);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue