I have three columns in my table: A - event values that user does on an app B - success or error C - unique ID - used for counting totals
I want to find out the count of events in A, when there is at least one error in B.
I have a measure: c-events = countrows of C.
If i run this code: Error Events = CALCULATE([C-events], FILTER(Query1, Query1[B]="error")) Then I get 2 as the number, but I want to get 6 as the answer, since I want to get the total of all values in A that had at least 1 error in B. Any thoughts on how I could do it in Dax?