Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Arshadjehan
Helper I
Helper I

Not displaying the sub levels if only one sub level in Matrix visual

Hi, 

Matrix visual as shown below , displays the sub level details even if there is only one sub level. 

I want to hide the sub level if there is only one sub level, in this case to display only upto "Provincial" level , coz values is same in only one sub level i.e. "ADP (Provincial)"

 

Hierarchy Issue.png

 

 

 

 

 

 

 

Any Help ?

1 ACCEPTED SOLUTION
v-frfei-msft
Community Support
Community Support

Hi @Arshadjehan ,

 

Sorry for misunderstanding your request. Here we cannot filter the matrix directly, we can create measure to work on it.

 

 

sum of be = 
VAR dis =
    DISTINCTCOUNT ( 'Table'[sub2] )
var be = SUM('Table'[BE])
var a = IF(dis = 1
            && ISINSCOPE ( 'Table'[sub2] )
            && OR (
                SUM ( 'Table'[Release] )
                    = CALCULATE ( SUM ( 'Table'[Release] ), ALL ( 'Table'[sub2] ) ),
                SUM ( 'Table'[Release] ) = 0),TRUE())
var  b = 
IF(dis = 1
            && ISINSCOPE ( 'Table'[sub2] )
            && OR (
                be
                    = CALCULATE ( be, ALL ( 'Table'[sub2] ) ),
                be = 0),TRUE())


RETURN
    IF (
        a&&b,
        BLANK(),be
        
    )

 

 

Capture.PNG

 

For more details, please check the pbix as attached.

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

3 REPLIES 3
v-frfei-msft
Community Support
Community Support

Hi @Arshadjehan ,

 

Sorry for misunderstanding your request. Here we cannot filter the matrix directly, we can create measure to work on it.

 

 

sum of be = 
VAR dis =
    DISTINCTCOUNT ( 'Table'[sub2] )
var be = SUM('Table'[BE])
var a = IF(dis = 1
            && ISINSCOPE ( 'Table'[sub2] )
            && OR (
                SUM ( 'Table'[Release] )
                    = CALCULATE ( SUM ( 'Table'[Release] ), ALL ( 'Table'[sub2] ) ),
                SUM ( 'Table'[Release] ) = 0),TRUE())
var  b = 
IF(dis = 1
            && ISINSCOPE ( 'Table'[sub2] )
            && OR (
                be
                    = CALCULATE ( be, ALL ( 'Table'[sub2] ) ),
                be = 0),TRUE())


RETURN
    IF (
        a&&b,
        BLANK(),be
        
    )

 

 

Capture.PNG

 

For more details, please check the pbix as attached.

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.
v-frfei-msft
Community Support
Community Support

Hi @Arshadjehan ,

 

Please enable the option "show items with no data " for the rows in your matrix visual.

show.PNG

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

@v-frfei-msft  I probably couldnt make you understand what I want!

I want to hide the sub level, if there is only one sub level, and to show as parent level only.

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.