Link to home
Start Free TrialLog in
Avatar of cbridgman
cbridgmanFlag for United States of America

asked on

Excel 2010 - Remove Duplicate Rows - Conditional

I am trying to remove duplicate rows from a spreadsheet. The duplicate values are contained in Column A. When I remove the duplicates, I want to remove the older ones and keep the newest (column B contains the date). I can sort this and highlight duplicate rows and then manually delete the older ones but I'd rather do this with a formula of some kind. Is there a relatively easy way to accomplish this? See Sample Spreadsheet and Resulting Spreadheet below for example.

Sample Spreadsheet

--A--    ------B------
1234   10/22/2013
1234   09/24/2013
1234   06/21/2013
2876   09/22/2013
3456   01/02/2012
3456   03/05/3013

Resulting Spreadsheet After Removing Duplicates

--A--    ------B------
1234   10/22/2013
2876   09/22/2013
3456   03/05/3013
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
Avatar of cbridgman

ASKER

Worked like a charm. Thanks for the help.