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! Request now
Hi everyone, I need a measure to ignore a visual-level filter that I've applied to a matrix (the measure is pulled into the matrix).
I have the 2 matricies shown below.
I need the "percentage of total incidents" column in the second matrix to divide the incident count for that row by the total from the "before filter" matrix above. (Aka -- 31 by 114, instead of 108). The only difference between those two matrices is that in the second matrix, I've applied a filter to the visual that says status is not AB-Abandoned. So, I need that measure to account for ALL statuses and ignore that one filter.
Here's the measure that calcualtes the percentage, and the associated measure built into that
Percentage of Total Incidents = COUNT(Merge1[Total Incidents to Date])/Total Incidents 3
Thanks!
Solved! Go to Solution.
Hi! I actually figured this out. I rebuilt all of the measures in my matrix in a calcualte(measure), status <> "AB-Abandoned" format to incorporate that visual-level filter at the measure level. Then, for the one measure in question, I just didn't exclude that AB-Abandonded status. It ended up working!
Thank you, though, for the suggestion! 🙂
Hi @rachelbabcock ,
Try this:
Total Incidents 3 =
CALCULATE (
COUNT ( Merge1[Total Incidents to Date] ),
FILTER (
ALL ( Merge1[status], Merge1[processstatus], Merge1[Group Name] ),
Merge1[processstatus] IN { "Approved", "Submitted" }
&& Merge1[Group Name]
IN { "American Group", "Corporate Office Ledgers", "National Group" }
)
)
If this doesn't work either, please share me your .pbix file for test. Please remove sensitive information. It is suggested to upload your file to OneDrive for Business and then paste the link here.
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi! I actually figured this out. I rebuilt all of the measures in my matrix in a calcualte(measure), status <> "AB-Abandoned" format to incorporate that visual-level filter at the measure level. Then, for the one measure in question, I just didn't exclude that AB-Abandonded status. It ended up working!
Thank you, though, for the suggestion! 🙂
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.