I need a little help.
I have a long list of serial numbers, and then a date associated with an activity for each serial number.
I am trying to identify duplicate entries for each serial number (i.e. I have performed some activity on some unique serial number multiple times), and then for those entries with duplicates find the most RECENT date of activity.
Here's the basic structure:
S/N Date
001 1/1/05
002 1/5/05
002 3/2/05
003 1/3/05
004 4/7/05
004 2/1/05
The desired output would be a list of ALL unique serial numbers, with the corresponding date of the most recent activity for each serial number, such as the following:
S/N Date
001 1/1/05
002 3/2/05
003 1/3/05
004 4/7/05
Thanks!
I have a long list of serial numbers, and then a date associated with an activity for each serial number.
I am trying to identify duplicate entries for each serial number (i.e. I have performed some activity on some unique serial number multiple times), and then for those entries with duplicates find the most RECENT date of activity.
Here's the basic structure:
S/N Date
001 1/1/05
002 1/5/05
002 3/2/05
003 1/3/05
004 4/7/05
004 2/1/05
The desired output would be a list of ALL unique serial numbers, with the corresponding date of the most recent activity for each serial number, such as the following:
S/N Date
001 1/1/05
002 3/2/05
003 1/3/05
004 4/7/05
Thanks!