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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
jdelmonico
Frequent Visitor

Count Groups that contain at least one of a certain value in another column

I have different tests grouped together, and I want to count the number of groups where one or more tests has failed. I don't have access to manipulate the query or add columns, so I am trying to do this in DAX. My data looks like this:

 

Group

Test

Test Result

Group 1Test 1Fail
Group 1Test 2Pass
Group 2Test 1Pass
Group 2Test 2Pass
Group 3Test 1Fail
Group 3Test 2Fail

 

So for my outcome I essentially want:

Groups with Failed Tests: 2

Groups with No Failed Tests: 1

 

Thank you very much!

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @jdelmonico 

please try

Fail Count =
SUMX (
VALUES ( 'Table'[Group] ),
INT ( "Fail" IN CALCULATETABLE ( VALUES ( 'Table'[Test Result] ) ) )
)

 

Not Fail Count =
SUMX (
VALUES ( 'Table'[Group] ),
INT ( NOT ( "Fail" IN CALCULATETABLE ( VALUES ( 'Table'[Test Result] ) ) ) )
)

View solution in original post

3 REPLIES 3
tamerj1
Super User
Super User

Hi @jdelmonico 

please try

Fail Count =
SUMX (
VALUES ( 'Table'[Group] ),
INT ( "Fail" IN CALCULATETABLE ( VALUES ( 'Table'[Test Result] ) ) )
)

 

Not Fail Count =
SUMX (
VALUES ( 'Table'[Group] ),
INT ( NOT ( "Fail" IN CALCULATETABLE ( VALUES ( 'Table'[Test Result] ) ) ) )
)

Thank you for the suggestion! It might work, but I'm not sure--when I tried it I got an error that it took too much memory! It's a very large dataset.

 

jdelmonico_0-1686075355300.png

 

Nevermind! I had a typo in there that was throwing the calculation off! I have fixed it and this appears to work!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors