Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
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
Any help would be great
Solved! Go to Solution.
@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])
@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])
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
113 | |
107 | |
101 | |
94 | |
69 |
User | Count |
---|---|
173 | |
135 | |
131 | |
96 | |
95 |