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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
julsr
Resolver III
Resolver III

Managing DrillThrough Filter Behavior in PowerBI Time Segments

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

2 REPLIES 2
Kedar_Pande
Super User
Super User

@julsr 

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

Ritaf1983
Super User
Super User

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

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors