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
Aree
Resolver I
Resolver I

DAX to find where it does not exist

Results.PNGUsers.PNG

The problem i am attempting to solve is simple to do in SQL but I would like to derive the DAX equivalent.

I want to count the number of users who do not have a score in the Results Table. 

These tables are link via the UID field. 
I'm sure the solution is simple but i just can't conceptualize it 😞

1 ACCEPTED SOLUTION
OwenAuger
Super User
Super User

@Aree

A simple measure that should achieve this is:

Count of Users Without Score =
COUNTROWS (
    EXCEPT (
        VALUES ( Users[UID] ),
        VALUES ( Results[UID] )
    )
)

This would respond to any filters on either Users or Results tables.


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
Twitter
LinkedIn

View solution in original post

3 REPLIES 3
OwenAuger
Super User
Super User

@Aree

A simple measure that should achieve this is:

Count of Users Without Score =
COUNTROWS (
    EXCEPT (
        VALUES ( Users[UID] ),
        VALUES ( Results[UID] )
    )
)

This would respond to any filters on either Users or Results tables.


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
Twitter
LinkedIn

Thank you @OwenAuger

I needed to also add a filter but the end DAX measure looks like this

Calculate (
            CountRows (
                       Except( Values('Users'[UID]), Values('Results'[UID])))
            , 'Results'[Exam] = "English")  

So i can count where the User does not have an enlgish score. 

Much Appreciated.

Hardik
Continued Contributor
Continued Contributor

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.