我想根据其属性过滤维度。
我的维度由具有父叶类别的各种类别组成。每个类别都有一个在线状态(真或假)。在维度内,我定义了属性“is_online”。现在我想按状态过滤类别树[is_online] = true
我目前的 MDX 是:
SELECT
FILTER(
[Categories].allmembers,
[categories].CurrentMember.properties("is_online") = 'true'
) on 0
FROM [Cube]
我收到此错误:
Property(): the property 'is_online' was not found
有谁知道解决方案?我的 IcCube 版本是 V 5.1.6