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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
WTAS80486
Helper IV
Helper IV

Stop page level filter in filter pane to apply to just one visual

In a pie chart I have to show all status(Draft , new, review, closed pending resolved ) but the page level filter excludes Closed and Resolved.

 

How can i do that if i want to keep page level filter except this one.

 

Any solution except that i can apply filters to each visual seperately.

Ankita80486_0-1659548033425.png

 

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

Hi @WTAS80486,

 

You may consider this solution.

1 Create a Calculated table with the status column in your table

Status List = SELECTCOLUMNS('Table',"status",'Table'[status])

 

2 Create a measure to count status in the new table, and take it to create the Pie chart

vcazhengmsft_0-1659940397283.png

 

Also, attached the pbix file.

 

If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please let me know. Thanks a lot!

 

Best Regards,                                                

Community Support Team _ Caiyun

View solution in original post

4 REPLIES 4
v-cazheng-msft
Community Support
Community Support

Hi @WTAS80486,

 

You may consider this solution.

1 Create a Calculated table with the status column in your table

Status List = SELECTCOLUMNS('Table',"status",'Table'[status])

 

2 Create a measure to count status in the new table, and take it to create the Pie chart

vcazhengmsft_0-1659940397283.png

 

Also, attached the pbix file.

 

If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please let me know. Thanks a lot!

 

Best Regards,                                                

Community Support Team _ Caiyun

Thanks for the detailed solution, this is working.

amitchandak
Super User
Super User

@WTAS80486 ,Remove them using visual level filter

 

Try creating a measure like

 

calculate(Sum(Table[Value]), filter(all(Table[Status]), not Table[Status] in {"Closed","Resolved"}) , values(Table[Status]))

 

 

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Thanks for the reply!

 

calculate(Sum(Table[Value]), filter(all(Table[Status]), not Table[Status] in {"Closed","Resolved"}) , values(Table[Status]))

 

In Table[Value] what is value??

 

And in values(Table[Status] what is values??

 

My table name is incidents and column name status.

 

Also where do we use this measure in Vizualization so that it reflects in th graph to overide page level filter?

 

Ankita80486_0-1659621806903.png

 

 

 

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.