将Percentile_Inc添加到Excel 2011 MAC?

时间:2013-09-29 09:50:09

标签: excel excel-2011

认为Mac 2011不包含Percentile_Inc。

我的问题很简单,是否可以在Excel 2011 MAC版本中添加Percentile_Inc?

提前致谢。

2 个答案:

答案 0 :(得分:2)

我相信你的意思是PERCENTILE.INC功能,它也适用于Excel 2011。请参阅此文

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

从该链接引用

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)

来自评论的跟进

如果您是从VBA进行的,那么您需要使用

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

<强>截图

enter image description here

答案 1 :(得分:1)

你的意思是PERCENTILE.INC?根据{{​​3}},它应该被包括在内(在统计函数下)......但你也可以使用简单的PERCENTILE函数,它完全相同。