Forum Discussion
Sachy123
4 years agoHelper 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_Rat...
- 4 years ago
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])
amitchandak
4 years agoSuper 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])