I have some data that I need to keep whole (meaning I can't use Remove Duplicates and I don't want to do too much sorting), but need a way of "flagging" duplicate values with the greatest date.
For Example:
ROW RECORD ASSIGNED
0000123456 6/17/2015
3 0000123456 6/24/2015
4 0000234567 6/17/2015
5 0000345678 6/24/2015
In column A, I want to "flag" each unique value, but where it finds duplicates in column B, only flag the one with the greatest date. By "flag", I mean return the Row each unique (and greatest unique) value resides. Therefore in the above, cell A2 would be blank because it is a duplicate value to row 3 with a lesser date.
I can then use the Row number as a unique value to lookup the data for reporting. Does this make sense?
Bookmarks