Hi, I have a Workagreement table, which includes Employee.id and Workagreement.id. I need to create a calculated table for the latest workagreement (biggest Workagreement.id) by employee but not able to find a solution. Please maybe someone here can help me.
My measure:
Solved! Go to Solution.
Hi @henkka ,
Please follow these steps:
(1) Create new table and measure
Max = CALCULATE(MAX('Table'[Workagreement.id]),FILTER(ALL('Table'),'Table'[Employee.id]= MAX('Table'[Employee.id])))
Table 2 = FILTER(ALL('Table'),'Table'[Workagreement.id]=[Max])
(2)Final output
Best Regards,
Gallen Luo
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @henkka ,
Please follow these steps:
(1) Create new table and measure
Max = CALCULATE(MAX('Table'[Workagreement.id]),FILTER(ALL('Table'),'Table'[Employee.id]= MAX('Table'[Employee.id])))
Table 2 = FILTER(ALL('Table'),'Table'[Workagreement.id]=[Max])
(2)Final output
Best Regards,
Gallen Luo
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you very much, modified this a bit as I don't need other columns from the table, but works like a charm!
If someone seeks this and has similar need that I have, modify the second part of the dax as this:
User | Count |
---|---|
143 | |
84 | |
64 | |
62 | |
57 |
User | Count |
---|---|
211 | |
109 | |
89 | |
76 | |
74 |