I have Multiple Hierarchies. For few we have Dimension at every level in Hierarchy. For few Some Low Hierarchy is Blank.
If the Low Hierarchy is Blank ,I don’t want to see the Blank row.
I implemented the solution using ISINSCOPE DAX for 2 Hierarchies, If there were more than How to do that??
Measure =
IF(ISINSCOPE(‘Table’[Hier1]),
IF(ISINSCOPE(‘Table’[Hier2]),
IF(MAX(‘Table’[Hier2])=BLANK(),BLANK(),SUM([value])) ,
SUM([value])),
SUM([value]))
If you don’t want to see blanks in [Hier2] column then select your Matrix visual and go to filters pane and under [Hier2] column Basic Filtering just enable Select All option and deselect (Blanks) option as shown in the image below.
Due to inactivity, a response on this post has been tagged as “Solution”.
If you have a follow question or concern related to this topic, please remove the Solution tag first by clicking the three dots beside Reply and then untick the check box.