I want to filter a dimension on its properties.
My Dimension consists of various categories with parent Leaf-categories. Each Category has an online status (true or false). Within the dimension I define the property "is_online".
Now I want to filter the category-tree by status [is_online] = true
My current MDX is:
SELECT
FILTER(
[Categories].allmembers,
[categories].CurrentMember.properties("is_online") = 'true'
) on 0
FROM [Cube]
I get this error:
Property(): the property 'is_online' was not found
Does anyone know a solution? My Version of IcCube is V 5.1.6
Even though this is an old post. Please try replacing the _ in the property name with a space. Eg: "is online".