Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Malps90
Helper I
Helper I

Latest date dax

Hi, 

 

I am having some issues trying to build a new measure. 

 

What I am trying to achieve is;

 

I have a list if employees with there review dates and when review was completed. I am trying to build a measure that will show me only the latest review date rather than all review dates for that employee code The data is completed by power apps and feeds Into a sharepoint list.

 

I tried to create an index column flip it and remove duplicates so it only leaves me the latest line per employee but this didnt quiet work

 

Any help would be appreciated.

 

Many thanks

1 ACCEPTED SOLUTION
Anonymous
Not applicable

// This measure will find the latest
// review date in a set of Employees.
// If one employee is visible, it'll
// return the very latest review date
// for this employee.
// If you have a Review Calendar that
// connects to Employees via the Review
// Date field, you'll get the latest
// review date within the selected period
// of time. It's not clear exactly what
// you really want to do and what your
// model looks like.
[Latest Review Date] =
	MAXX(
		Employees,
		Employees[Review Date]
	)

 

Best

D

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

// This measure will find the latest
// review date in a set of Employees.
// If one employee is visible, it'll
// return the very latest review date
// for this employee.
// If you have a Review Calendar that
// connects to Employees via the Review
// Date field, you'll get the latest
// review date within the selected period
// of time. It's not clear exactly what
// you really want to do and what your
// model looks like.
[Latest Review Date] =
	MAXX(
		Employees,
		Employees[Review Date]
	)

 

Best

D

Greg_Deckler
Community Champion
Community Champion

Sample data would assist greatly. Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

 

But perhaps this will help: 

https://community.powerbi.com/t5/Quick-Measures-Gallery/Lookup-Min-Max/td-p/985814



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.