Link to home
Start Free TrialLog in
Avatar of Murray Brown
Murray BrownFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Excel Find the mosr recent date using vlookup

Hi. I am using the following Excel formula to find a date using a serial number
in column K. The Registration_Table data will have more than one date against that
serial number. I want tofind the most recent date. How do I do this?


=IFERROR(VLOOKUP(K2,Registration_Table!A:I,3,0),"")
Avatar of Saqib Husain
Saqib Husain
Flag of Pakistan image

Try

=IFERROR(VLOOKUP(max(Registration_Table!A:a),Registration_Table!A:I,3,0),"")
ASKER CERTIFIED SOLUTION
Avatar of byundt
byundt
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Murray Brown

ASKER

thanks for the help