March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I have 2 tables, an Employee table with a list of employees, and the other a list of their Evaluations. I would like to know how can I get the most recent of evaluation of each employee? Sample tables below:
Employee table
EID | Name |
1 | Jane |
2 | Jen |
3 | Jin |
4 | John |
5 | June |
Evaluations table
EID | EvalID | Date |
1 | 1 | 1-Jan-22 |
1 | 2 | 1-Feb-22 |
2 | 1 | 1-Jan-22 |
2 | 2 | 1-Feb-22 |
2 | 3 | 1-Mar-22 |
3 | 1 | 1-Apr-22 |
4 | 1 | 1-Apr-22 |
4 | 2 | 1-May-22 |
5 | 1 | 1-Apr-22 |
5 | 2 | 1-May-22 |
5 | 3 | 1-Jun-22 |
I am combining both tables into one table visual.
Solved! Go to Solution.
HI @olimilo
This is a sample file with the solution https://www.dropbox.com/t/R7hQZY8UPeD2n6x9
Last Evaluation =
CALCULATE ( MAX ( Evaluations[EvalID] ), Evaluations[Date] = MAX ( Evaluations[Date] ) )
HI @olimilo
This is a sample file with the solution https://www.dropbox.com/t/R7hQZY8UPeD2n6x9
Last Evaluation =
CALCULATE ( MAX ( Evaluations[EvalID] ), Evaluations[Date] = MAX ( Evaluations[Date] ) )
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
89 | |
84 | |
70 | |
51 |
User | Count |
---|---|
206 | |
146 | |
97 | |
79 | |
69 |