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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Sachy123
Helper V
Helper V

Match / unmatch count

So I have two tables from different sources joined by ID's (Emp_ID) 

 

EmployeeRatingTable1                

Emp_ID     Employee_Ratings

 

 

EmployeeRatingTable2        

Emp_ID     Employee_Ratings     

 

 

How do I make a measure/column which I can use to compare the count of employees included in table 1 but nt in table 2

count of matching ratings

count of unmatched ratings

 

Sachy123_0-1641297045834.png

Any help would be great

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Sachy123 , One option, is merge them in Power Query  and have in one table and compare column

 

Other option

 

Try if these measures can work

Countx(filter(Table1, Table1[Emp Rating] =related( Table2[Emp Rating]) ), Table1[Emp ID])

 

Countx(filter(Table1, Table1[Emp Rating] <> related( Table2[Emp Rating]) ), Table1[Emp ID])

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@Sachy123 , One option, is merge them in Power Query  and have in one table and compare column

 

Other option

 

Try if these measures can work

Countx(filter(Table1, Table1[Emp Rating] =related( Table2[Emp Rating]) ), Table1[Emp ID])

 

Countx(filter(Table1, Table1[Emp Rating] <> related( Table2[Emp Rating]) ), Table1[Emp ID])

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.