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! Learn more

Reply
abhishek_2593
Helper II
Helper II

Matrix - Filter on column subtotals

Hi,
I have created a matrix chart from a database for analysis and would like to filter out certain data which does not meet the criteria .

My requirement is that i should retain only the data which has a column subtotal count of 4 or more.

Is there a way we could filter out the data from the below database using count or other functions?

abhishek_2593_0-1656353839231.png

 

1 ACCEPTED SOLUTION
speedramps
Super User
Super User

You have not explain what U10, U11, U12, U13 are. So we call them "Users".

 

Create a measure to get the totals for all users for the visual context (eg Club Name)

 

Total for all Users =
CALCULATE(

SUM(yourtabelname[yourvalue]),

ALL( yourtabelname[Users]
)

 

Then add Total for all Users >= 4 to your filter

 

Thanks for reaching out for help.

I have helped you, now please help me by giving kudos.

Remeber we are unpaid volunteers.

Click the thumbs up and accept as solution button. 

One question per ticket please. If you need to extend your request then please raise a new ticket.

You will get a quicker response and each volunteer solver will get the kudos they deserve. Thank you !

View solution in original post

1 REPLY 1
speedramps
Super User
Super User

You have not explain what U10, U11, U12, U13 are. So we call them "Users".

 

Create a measure to get the totals for all users for the visual context (eg Club Name)

 

Total for all Users =
CALCULATE(

SUM(yourtabelname[yourvalue]),

ALL( yourtabelname[Users]
)

 

Then add Total for all Users >= 4 to your filter

 

Thanks for reaching out for help.

I have helped you, now please help me by giving kudos.

Remeber we are unpaid volunteers.

Click the thumbs up and accept as solution button. 

One question per ticket please. If you need to extend your request then please raise a new ticket.

You will get a quicker response and each volunteer solver will get the kudos they deserve. Thank you !

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