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! Learn more
Here is a table
| Incident_ID | Triggers | Status |
| 7545714 | 41 | Red |
| 7545714 | 41 | Green |
| 7545883 | 16 | Purple |
| 7549800 | 15 | Red |
| 7549800 | 15 | Green |
| 7549800 | 15 | Orange |
Given, there will alway be same number of triggers for a particular ID. But I don't want to count those triggers multiple times.
I tried the following DAX. My expected answer is 72, but I get 143 instead. How to fix?
Distinct_Matches:=CALCULATE(sum(Incidents[Triggers]),DISTINCT(Incidents[Incident_ID]))
Solved! Go to Solution.
If you are sure that Triggers and Incident_ID have a 1:1 relatioship, you could use this:
Distinct_Matches :=
SUMX (
SUMMARIZE ( Incidents, Incidents[Incident_ID], Incidents[Triggers] ),
Incidents[Triggers]
)
If you are sure that Triggers and Incident_ID have a 1:1 relatioship, you could use this:
Distinct_Matches :=
SUMX (
SUMMARIZE ( Incidents, Incidents[Incident_ID], Incidents[Triggers] ),
Incidents[Triggers]
)
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.