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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
meg5w
Frequent Visitor

Graph filter for OVERALL total

I am needing to filter a graph, basically saying if the total count is <4, don't show the graph. I tried adding this to the visual level filters but did not have any luck, as it breaks it down and filters the colum totals - not the OVERALL total. Is there a way to do this? 

1 ACCEPTED SOLUTION

Hi @meg5w ,

 

To create a measure as below and make the visual filtered by it as the picture.

 

Measure 2 = var a = CALCULATE(SUM(Table1[count]),ALLSELECTED(Table1))
return
if(a>4,1,BLANK())

Capture.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.

View solution in original post

4 REPLIES 4
meg5w
Frequent Visitor

Capture.PNG

 

Right now, it would filter out the 3, 3, and 1 - I am needing it to keep those and instead only filter if the overall TOTAL is <4

Hi @meg5w ,

 

We can add the count to the tooltips and filter the visual based on count making it greater than 3 as the picture. If it doesn't meet your requirement, kindly share your sample data and excepted result to me if you don't have any Confidential Information. Please upload your files to One Drive and share the link here.

 

Capture.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.

Thank you but what I am running into is when I do that, it will not take the TOTAL count - it will just take the count of the individual columns. Example:

 No filterNo filterCount > 4 filter applied to same dataCount > 4 filter applied to same data

I would want it to still show those 3 and 1 columns because the TOTAL count (3+3+9+7+1) is >4. There will be instances when that total count is < 4 and that is what I would not want to show. 

Hi @meg5w ,

 

To create a measure as below and make the visual filtered by it as the picture.

 

Measure 2 = var a = CALCULATE(SUM(Table1[count]),ALLSELECTED(Table1))
return
if(a>4,1,BLANK())

Capture.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.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.