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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

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
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
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
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors