Auto complete the date field

I am having a table employee with employee email id ,date ,name
In this employee table ,i am having a employee name called john as three record with different Date
Im having another table has Task,i need to get the latest date column value from the Employee table in this table date column
Any idea to achieve thisโ€ฆ

0 2 124
2 REPLIES 2

Try:

MAX( Employees[Date] )

Steve
Platinum 4
Platinum 4

Or:

MAX(SELECT(Employees[Date], ([Name] = "John")))
Top Labels in this Space