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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I need to write a measure that gives me the distinct count of items in one table that do not appear in another table.
Table1 appears as follows:
ID
1001
1002
1003
1004
Table2 appears as follows:
ID
1001
1002
1004
1001
1002
I want to write a measure that returns a result of 1 because ID 1003 in Table1 does not appear in Table2.
Any and all help would be greatly appreciated.
Solved! Go to Solution.
@Anonymous
Also you can use this MEASURE
Measure = COUNTROWS ( EXCEPT ( VALUES ( Table1[ID] ), VALUES ( Table2[ID] ) ) )
@Anonymous
Also you can use this MEASURE
Measure = COUNTROWS ( EXCEPT ( VALUES ( Table1[ID] ), VALUES ( Table2[ID] ) ) )
You could do this in 2 steps:
IsInTable2 = LOOKUPVALUE(Table2[ID],Table1[ID],Table1[ID])You can hide this column as it only stores an intermediate result.
NotInTable2 = COUNTBLANK(Table1[IsInTable2])
Hope this helps
JJ
Thanks for the suggestion. I appreciate you taking the time to submit it.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 68 | |
| 46 | |
| 44 | |
| 29 | |
| 20 |
| User | Count |
|---|---|
| 202 | |
| 130 | |
| 102 | |
| 71 | |
| 55 |