Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register 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])
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
84 | |
76 | |
73 | |
42 | |
36 |
User | Count |
---|---|
109 | |
56 | |
52 | |
48 | |
43 |