-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Major
-
Affects Version/s: None
-
Component/s: OpenFormula
-
None
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.