This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi everyone, i'm trying to get the latest date selected in a new column
my data is structured like;
Employee_name | Hire date | Latest date
Wittig Lyon | 1/1/2023 |
Wittig Lyon | 5/4/2023 |
Wittig Lyon | 9/8/2023 | 9/8/2023
Henry | 31/1/2023 |
Henry | 12/9/2023 | 12/9/2023
Henry | 1/9/2023 |
i`d love to have the Latest date be populated with the latest date of each employee thereby having 9/8/2023 as the value populating the latest date column for Wittig Lyon and 12/9/2023 for Henry
Solved! Go to Solution.
@WittigLyon , for a new column
New col=
var _max = maxx(filter(Table, [Employee_name] = earlier([Employee_name]) ), [Hire Date])
return
if( [Hire_date] = _Max, [Hire_date], blank())
For measure use
Latest
https://amitchandak.medium.com/power-bi-get-the-last-latest-value-of-a-category-d0cf2fcf92d0
Power BI DAX- Earlier, I should have known Earlier: https://youtu.be/CVW6YwvHHi8
Hi @WittigLyon
Add calculated column with the formula :
Hi @WittigLyon
Add calculated column with the formula :
@WittigLyon , for a new column
New col=
var _max = maxx(filter(Table, [Employee_name] = earlier([Employee_name]) ), [Hire Date])
return
if( [Hire_date] = _Max, [Hire_date], blank())
For measure use
Latest
https://amitchandak.medium.com/power-bi-get-the-last-latest-value-of-a-category-d0cf2fcf92d0
Power BI DAX- Earlier, I should have known Earlier: https://youtu.be/CVW6YwvHHi8
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 29 | |
| 28 | |
| 25 | |
| 19 | |
| 14 |
| User | Count |
|---|---|
| 53 | |
| 47 | |
| 27 | |
| 20 | |
| 19 |