views:

269

answers:

1

I'm attempting to create a ragged hierarchy in SSAS 2005. The "Category Name" and "Sub-Category Name" levels should be hidden in the hierarchy if either of them is blank. Leaf nodes which always have a value must display even if these two levels are blank.

An image of how the measure has been configured is as follows:

Measure dimension

I thought using HideMemberIf would fix this problem but it hasn't made any difference. Here is the Translations configuration:

Dimension translations

According to MSDN, HideMemberIf with a NoName value hides the member when it is empty.

Any ideas why this isn't working?

+1  A: 

The solution was pretty simple. The MDX Compatibility property needs to be set to 2 for this to work correctly.

See TechNet for more information.

Alex Angas