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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

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
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.