【发布时间】:2014-03-01 16:13:30
【问题描述】:
我正在尝试合并来自单个层次结构的多个成员,但这会导致以下错误:
Query (11, 3) The Jr-Kw-Mnd-Dag hierarchy is used more than once in the Crossjoin function.
这是我正在使用的查询的基本版本:
SELECT
NON EMPTY {
[Measures].[Amount]
} ON COLUMNS
, NON EMPTY {
[Realisatiedatum].[Jr-Kw-Mnd-Dag].[Jaar]
* [Realisatiedatum].[Jr-Kw-Mnd-Dag].[Maand])
} ON ROWS
FROM
[Cube]
Jaar 等于英文的年,Maand 等于英文的月。这就是我想要完成的:
...
november 2013
december 2013
januari 2014
februari 2014
...
最后但同样重要的是,层次结构:
【问题讨论】:
标签: mdx hierarchy cross-join