This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hi,
I have an issue with creating one DAX measure, hope some of you could help here.
The task is to show % spread of vulnerabilities but with aggregation of 100% per type of Severity.
Used measure:
% of vuln wo Sev =
CALCULATE(
IF(
DIVIDE([Number of Vulnerabilities],[Sum of vulnerabilities wo sev],0) = BLANK(),
0,
DIVIDE([Number of Vulnerabilities],[Sum of vulnerabilities wo sev],0)
)
)
And underlying measures are:
Number of Vulnerabilities = count('TSCDB_Prod LIVE'[ID])
Sum of vulnerabilities wo sev =
CALCULATE(
[Number of Vulnerabilities],
ALLEXCEPT('TSCDB_Prod LIVE','TSCDB_Prod LIVE'[Severity]),
'TSCDB_Prod LIVE'[Closed status] = "Open"
)
As you see this measure works as intended but issue appears when I try to add organization dimension as a filter:
Without ORG filter:
With applied filter Number of Vulnerabilities changes but Sum of Vuln wo SEV remains the same and that affects % of Vuln wo Sev as it should still calculate 100% based on selection.
Any idea how to get around issue to have Sum of vuln wo Sev be able to react to filtering?
Please try this measure :
Sum of vulnerabilities wo sev =
CALCULATE(
[Number of Vulnerabilities],
FILTER('TSCDB_Prod LIVE',[Severity]=MAX('TSCDB_Prod LIVE'[Severity]) &&
'TSCDB_Prod LIVE'[Closed status] = "Open"
))
Because you are using allexcept here , the filter in slicer does not work for the return value of this measure .
ALLEXCEPT function (DAX) - DAX | Microsoft Learn
Best Regards,
Community Support Team _ Ailsa Tao
HI Ailsa,
Thank you for your feedback, it didn't do the trick sadly.
Measure is now filtering through slicer but gives same result as Number of Vuln.
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 7 | |
| 5 | |
| 5 | |
| 2 | |
| 1 |
| User | Count |
|---|---|
| 14 | |
| 8 | |
| 7 | |
| 6 | |
| 6 |