AddCalculatedMembers (MDX)
返回通过将计算成员添加到指定集而生成的集。
语法
AddCalculatedMembers(Set_Expression)
参数
- Set_Expression
返回集的有效多维表达式 (MDX)。
注释
默认情况下,MDX 在解析集函数时会排除计算成员。 AddCalculatedMembers 函数会检查 Set_Expression, 中所指定的集表达式,并包括与该集表达式作用域内所含成员处于同级的计算成员。
备注
此函数只能与一维集表达式一起使用。
示例
以下示例说明了此函数的用法。
-- This query returns the calculated members for the cube
-- by retrieving all members, and then excluding non-calculated members.
SELECT
AddCalculatedMembers(
{[Measures].Members}
)-[Measures].Members ON COLUMNS
FROM [Adventure Works]
下例中,从 Adventure Works 多维数据集中除了返回 Measures 维度中的所有计算成员外,还返回 Measures.[Unit Price] 成员。
SELECT
AddCalculatedMembers({Measures.[Unit Price]}) ON COLUMNS
FROM
[Adventure Works]