Search code examples
excelexcel-2011

Add Percentile_Inc to Excel 2011 MAC?


It semmes that Mac 2011 does not includes Percentile_Inc.

My question is simple, is it possible to add Percentile_Inc in Excel 2011 MAC version ?

Thanks in advance.

bee


Solution

  • I believe you mean PERCENTILE.INC function which works on Excel 2011 as well. Please see this article

    http://office.microsoft.com/en-001/mac-excel-help/percentile-inc-function-HA102927917.aspx

    Quote from that link

    Applies to:
    Excel for Mac 2011
    
    PERCENTILE.INC function
    
    Returns the k-th percentile of values in a range, where k is in the range 0 to 1, 
    inclusive. You can use this function to establish a threshold of acceptance. 
    For example, you can decide to examine candidates who score above the ninetieth 
    percentile.
    
    Syntax
    
    PERCENTILE.INC(array,k)
    

    Followup from Comments

    If you are doing it from VBA then you need to use

    Application.WorksheetFunction.Percentile(Range("A1:A" & i),0.9)
    

    ScreenShot

    enter image description here