Leading the way in Microsoft Office Development
 Home|Excel|Word|PowerPoint|Consultancy|Feedback|Contact 
 Microsoft Excel > Functions > Statistical > PERMUT

 

PERMUT(number, number_chosen)

 
 Returns the number of permutations from a given number.

 numberThe integer that describes the number of objects.
 number_chosenThe integer that describes the number of objects in each permutation.

 REMARKS
 
  • If any of the arguments are not integers, they are truncated.
     
  • If any of the arguments are not numeric, then #VALUE! is returned.
     
  • If "number" <= 0, then #NUM! is returned.
     
  • If "number_chosen" < 0, then #NUM! is returned.
     
  • If "number" < "number_chosen", then #NUM! is returned.
     
  • Returns the number of permutations for a given number of objects that can be selected from number objects. A permutation is any set or subset of objects or events where internal order is significant. Permutations are different from combinations, for which the internal order is not significant. Use this function for lottery-style probability calculations.
     
  • Suppose you want to calculate the odds of selecting a winning lottery number. Each lottery number contains three numbers, each of which can be between 0 (zero) and 99, inclusive. The following function calculates the number of possible permutations:

     EXAMPLES
     
     A
    1=PERMUT(100,1) = 100
    2=PERMUT(100,1.9) = 100
    3=PERMUT(100,2) = 9900
    4=PERMUT(100,3) = 970200
    5=PERMUT(100,"some text") = #VALUE!
    6=PERMUT("some text",2) = #VALUE!
     

     Functions - P | Index - P | Office Online 

     Copyright © 2004-2007 Better Solutions Limited. All Rights Reserved.Top