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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
Anonymous
Not applicable

How do I count the number of rows containing specific values in a different table?

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.

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

@Anonymous 

 

Also you can use this MEASURE

 

Measure =
COUNTROWS ( EXCEPT ( VALUES ( Table1[ID] ), VALUES ( Table2[ID] ) ) )

View solution in original post

3 REPLIES 3
Zubair_Muhammad
Community Champion
Community Champion

@Anonymous 

 

Also you can use this MEASURE

 

Measure =
COUNTROWS ( EXCEPT ( VALUES ( Table1[ID] ), VALUES ( Table2[ID] ) ) )
DoubleJ
Solution Supplier
Solution Supplier

You could do this in 2 steps:

  1.  Create a calculated column in Table1 that looks up if the ID exists in Table2:
    IsInTable2 = LOOKUPVALUE(Table2[ID],Table1[ID],Table1[ID])
    You can hide this column as it only stores an intermediate result.

  2. Create a measure that counts the Blanks in the created colum
    NotInTable2 = COUNTBLANK(Table1[IsInTable2])

Hope this helps

JJ

Anonymous
Not applicable

Thanks for the suggestion. I appreciate you taking the time to submit it.

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 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.