Forum Discussion
Frederik96
Jan 04, 2019Copper Contributor
"Remove dublicate values with constraints"
Hello I have list with a lot of dublicated values. I want to delete one of the dublicated rows, but it should be the one with the earlist LogOn (in this case the second row). Is it possible to do th...
SergeiBaklan
Jan 04, 2019Diamond Contributor
If duplicates are for first two columns you could do that manually
1) Data-Sort, first two levels to sort are first two columns; third level are dates with Oldest to newest order
2) Select your entire range/sheet, Data->Remove duplicates; keep selected only first two columns; Enter
Remove duplicates keeps only first met row with duplicates, thus with oldest row.
If for some reason you'd like to return to initial order of rows, add helper column before sorting with index from 1 to number of rows in the range. After removing duplicates sort by that column and remove it.
- Frederik96Jan 08, 2019Copper Contributor
Thank you, Sergei. It worked.