0

I am consuming dimensional data (TM1 cubes) with Report Studio. I want to combine the slice given by two (or more) tuple calls. This is because I want to include two elements from the same dimension that is not logically structured in a dimensional hierarchy. An example would be if I wanted to have combine the actuals for 2012 and 2013 without first making separate data items for both. Then I would have two expressions:

tuple([Actuals], [2012])
tuple([Actuals], [2013])

To illustrate what I want, I would ideally be able to write something similar to these suggestions:

tuple([Actuals], [2012], [2013])
tuple([Actuals], set([2012], [2013]))

However, these suggestions do not work. Hence, I was wondering if there is any other way of combining the slices given by two or more tuple calls, as described earlier in this post. Thanks in advance!

4

2 回答 2

2

组合一维的不同元素意味着处理 2 个不同的单元格(在您的示例中为 2012、2013 年),然后对它们的值做一些事情(总结?)。元组函数总是针对单个单元格,这使您的想法变得不可能。

但是组合不同元组的值通常是这样的:tuple([Actuals], [2012]) + tuple([Actuals], [2013])

或者

总计(集合内的[实际值]([2012],[2013]))

于 2013-11-20T23:59:24.623 回答
0

我正在寻找的答案可以在这里找到:

https://www.ibm.com/developerworks/community/forums/html/topic?id=6ef92a9e-0d0f-494b-984a-cdc3a82ca287&ps=25

于 2013-11-27T08:45:20.110 回答