Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi,
I have a pie chart that has two measures in as values: Accounts Above and Accounts Below. These measures count the account numbers whose totals are above a certain value and count those below.
If I select on the Accounts Above piece of the pie chart, I want to filter the table by only showing the Account Numbers whose totals are above the certain value. And if I select on the Accounts Below piece of the pie chart, I want to filter a table by only showing the Account Numbers whose totals are below the certain value.
Any idea how I can achieve this?
If you want to replace the measure
If you need to filter values
measure = calculate([measure3],filter(table,[measure4]>0)
or
measure = calculate([measure3],values(Table[ID]),filter(table,[measure4]>0) //level at which you want to filter in values
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.