zoukankan      html  css  js  c++  java
  • Hyperion Essbase BusinessRule 函数学习--2

    @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忽略0missing

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

    0missing外,进行平均操作

    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

  • 相关阅读:
    1029. Two City Scheduling
    JS判断Android、iOS或浏览器的多种方法(四种方法)【转】
    layui select onchange事件【转】
    PHP 判断数据类型【转】
    php 对数组进行排序【转】
    php中怎么删除数组的第一个元素和最后一个元素【转】
    php数组操作之获取数组元素索引(键)值【转】
    HTML表单中 textarea标签的value属性赋值【转】
    为什么js的"关联数组"不能转成json字符串而对象可以?【转】
    CSS white-space属性是用来设置如何处理元素中的空白【转】
  • 原文地址:https://www.cnblogs.com/jiangu66/p/3220235.html
Copyright © 2011-2022 走看看