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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
dokat
Post Prodigy
Post Prodigy

Hide rows in matrix table without affecting subtotal

Hi,

 

Is it possible to hide rows in matrix table without affecting subtotals and impacting other visuatizations?

 

In below table i dont want to show row totals for Tier 4 but subtotal to still add up to 600. When i use filters subtotal also exclude the filtered value because of that it doesnt work. Are there a workaround this?

 

 Sales
Tier 1100
Tier 2150
Tier 3170
Tier 4180
Subtotal600
1 ACCEPTED SOLUTION

Hey @dokat ,

 

basically, you can't hide something, Tier 4 is shown in my sample because of this property

TomMartens_0-1644129945421.png

If you deactivate the property Tier 4 will be automatically "excluded" from the row headers.

image.png

Regards,

Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

View solution in original post

5 REPLIES 5
dokat
Post Prodigy
Post Prodigy

@TomMartens  Yes this worked. Thanks

TomMartens
Super User
Super User

Hey @dokat ,

 

maybe this measure provides what you are looking for:

Sales w/o Tier4 = 
IF( SELECTEDVALUE( 'Sales'[Tier] ) = "Tier 4"
    , BLANK()
    , SUM( 'Sales'[Sales] )
) 

It seems that the below table visual provides what you are looking for:

image.png

Hopefully, this provides what you are looking for.

 

Regards,

Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

This worked for me! Thanks!! 

@TomMartens Thanks but i am trying to completely hide row where Tier + Tier 4. Not just the sales amount.

Hey @dokat ,

 

basically, you can't hide something, Tier 4 is shown in my sample because of this property

TomMartens_0-1644129945421.png

If you deactivate the property Tier 4 will be automatically "excluded" from the row headers.

image.png

Regards,

Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors