Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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 😞
Solved! Go to Solution.
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.
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.
https://community.powerbi.com/t5/Desktop/DAX-equivalent-of-NOT-EXISTS/td-p/56673
hope this provides you with the solution
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 50 | |
| 49 | |
| 35 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 91 | |
| 75 | |
| 41 | |
| 26 | |
| 25 |