我想過濾其屬性上的尺寸。
我的維度由具有父級葉子類別的各種類別組成。每個類別都有一個在線狀態(true或false)。在維度內,我定義了屬性「is_online」。 現在我想通過篩選狀態分類樹[is_online] = true
MDX:在其屬性上過濾尺寸
我目前的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
Dimension & Property definition
這裏也是。我得到了同樣的錯誤:找不到屬性 – David
你在icCube中有一個調試器,你有沒有試過使用它? – ic3