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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
icdns
Post Patron
Post Patron

Measure to ignore specific slicer

Hi Guys,

 

I wanted to have a dax (count of OVERDUE tickets) that I can use as a measure in a matrix table visual. 

This measure has no dependency, meaning no filters. The only filter of it is OVERDUE tickets. 

However, in my dashboard I have this filter = Created Date. 

 

How can I build a measure wherein it can ignore the filter = Created Date? 

 

This is my dax: 

justified_result_OpenOverdue = CALCULATE(COUNT(raw_task[Task No]), FILTER(raw_task, raw_task[Justified Result] = "OPEN:Overdue"),all(raw_task[Completed Date]))

 

Hope you can help me guys. Thanks! 🙂 

 

Regards,

aysee

 

2 REPLIES 2
Mariusz
Community Champion
Community Champion

Hi @icdns 

 

Try the below

justified_result_OpenOverdue = 
CALCULATE(
    COUNTROWS( raw_task ), 
    KEEPFILTERS( raw_task[Justified Result] = "OPENSmiley Surprisedverdue" ),
    ALL( raw_task[Completed Date], raw_task[Created Date] )
)

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
Mariusz Repczynski

 

Hi @Mariusz , 

 

I am currently using a matrix table that I can drill down to Service Area > Analyst 

 

Scenario 1: If complete_date filter is present in the dashboard.. The matrix table doesn't show correct matrix values.

 

Service Area > Analyst

analyst1.png

service area.png

Scenario 2: If completed_date filter is removed, it shows the correct value in the matrix table 

correct one.png

The dax that you have sent is correct, but why it is not showing the correct values in the matrix table when completed date filter is present 😞 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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