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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.