-
Type: Bug
-
Status: Closed
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: ODF 1.2
-
Component/s: OpenFormula
-
Labels:None
-
Proposal:
-
Resolution:
We currently have:
---------------------------------------------------------------------------------------
Summary: Returns the number of permutations for a given number of objects (repetition allowed).
Syntax: PERMUTATIONA( Integer total ; Integer chosen )
Returns: Number
Constraints: total >= 0, 0 <= chosen <= total
Semantics: Given total number of objects, return the number of permutations containing chosen
number of objects, with repetition permitted.
PERMUTATIONA = Total^Chosen
---------------------------------------------------------------------------------------
It is not clear what PERMUTAIONA(0,0) should be since 0^0 is undefined.