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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hello everyone,
I have several pie charts, each with its own DrillThrough table. One pie chart segments data by funded_date (12 months, 1 year, or 2 years). I need to modify the DrillThrough functionality so that when users click through this pie chart, it doesn't filter solely based on the clicked value (e.g., 12 months). The goal is to maintain all other visualization filters in the DrillThrough table except for the specific segment where the DrillThrough was initiated. Is there a way to achieve this?
Thanks
Create a measure that dynamically overrides the funded_date filter using DAX. For example:
FilteredAmount =
CALCULATE(
SUM('YourTable'[Amount]),
REMOVEFILTERS('YourTable'[funded_date])
)
Use this measure on the DrillThrough page to ignore the funded_date filter for your calculations.
💌 If this helped, a Kudos 👍 or Solution mark would be great! 🎉
Cheers,
Kedar
Connect on LinkedIn
Hi @julsr
You can try to override filters of drill through manually with dax.
Please refer to the linked video:
https://www.youtube.com/watch?v=BG51W2lKYIA
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.