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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register 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
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

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.