Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi All,
I have a report where there is:
- Donut Chart - with categories
- Funnell Chart - showing top 10 companies by total amount they spent
When I try to filter Funnel Chart by clicking on each category in Donut Chart, it does not update the top 10 company names, it highlights from current list of top 10.
SELECTED YELLOW CATEGORY ON DONUT:
FUNNEL highlights some amounts which are connected with this category instead of showing me new top 10 from selected category:
This is a filter I have on Funnel Chart:
I want to see new top 10, from selected category.
Is that even possible, can someone advice on that?
Solved! Go to Solution.
@Patryk_PL_92 , It should filter unless the interaction is off
Create a top 10 measure using TOPN with allselecected option and try
CALCULATE([Amount measure], TOPN(10,allselected(Table[Company]),[Amount measure],DESC),VALUES(Table[Company]))
https://databear.com/power-bi-dax-topn-function/
Thanks, that works 🙂
@Patryk_PL_92 , It should filter unless the interaction is off
Create a top 10 measure using TOPN with allselecected option and try
CALCULATE([Amount measure], TOPN(10,allselected(Table[Company]),[Amount measure],DESC),VALUES(Table[Company]))