Lookups(?) and duplicate indicators

Jstrodder

New Member
Joined
Jul 10, 2013
Messages
4
I have two columns of data (unfortunately, I'm not able to post the excel data format properly here for some reason). Column A is the identifier and column B is the date. I'm attempting to pull the last date in Column B for each individual number in Column A. For example, 048d34182e34581d9d2ba2ce31772ce5 would return 11/4/2014. Thanks for your help!


03abda41126cd5c19a976eae514804a1 2/4/2015
03abda41126cd5c19a976eae514804a1 2/4/2015
03abda41126cd5c19a976eae514804a1 2/4/2015
03ec92329d9e456433ef225be9c2be1d 7/14/2014
04035e31996c7c5ecfdae2626c2588a9 1/30/2015
048d34182e34581d9d2ba2ce31772ce5 7/23/2014
048d34182e34581d9d2ba2ce31772ce5 7/23/2014
048d34182e34581d9d2ba2ce31772ce5 7/24/2014
048d34182e34581d9d2ba2ce31772ce5 7/24/2014
048d34182e34581d9d2ba2ce31772ce5 11/3/2014
048d34182e34581d9d2ba2ce31772ce5 11/4/2014
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
You could try this in C1. Would return max (latest) date for each hash. You can then use vlookup or whatever you need to do. Enter CNTL-SHIFT-ENTER

=MAX(IF($A$1:$A$11=A1,$B$1:$B$11))
 
Upvote 0

Forum statistics

Threads
1,223,243
Messages
6,170,964
Members
452,371
Latest member
Frana

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top