您的位置:首页 > 其它

Hyperion Essbase BusinessRule 函数学习--2

2013-07-27 21:06 417 查看

@AVG

Returns the average of all values in expList.

【返回表达式列表的平均值】

Syntax

@AVG (SKIPNONE | SKIPMISSING | SKIPZERO | SKIPBOTH, expList)

Parameter

Description

SKIPNONE【从不忽略】

Includes all cells specified in the average operation regardless of their content.

【不论内容如何,对所有指定的单元进行平均操作】

SKIPMISSING【忽略Missing】

Excludes all values that are #MISSING in the average operation.

【除missing外,进行平均操作】

SKIPZERO【忽略0】

Excludes values of zero from the average calculation.

【除0外,进行平均操作】

SKIPBOTH【忽略0和missing】

Excludes all values of zero or #MISSING from the average calculation.

【除0或missing外,进行平均操作】

expList【表达式列表】

Comma-delimited list of member names, variable names, functions, or numeric expressions. expList provides a list of numeric values across which the average is calculated.

【用逗号分开成员名称,变量名称,函数或数字表达式清单。对表达式列表提供一系列数值与其交叉进行平均计算】

Example

The following example is based on the Sample Basic database. The calculation averages the values for the individual states making up the western region and places the results in West:

【如下实例基于“Sample Basic”数据库。由单独的州数据计算出西部区域的平均值】

FIX(Sales)

West=@AVG(SKIPNONE,California:Nevada);

ENDFIXThis example produces the following report:

Sales Jan Actual

Cola Diet Cola Caffeine Free Cola

==== ========= ==================

California 678 118 145

Oregon 160 140 150

Washington 130 190 #MI

Utah 130 190 170

Nevada 76 62 #MI

West 234.8 140 93
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: