My report has 6 Columns (A:F) However column F has some duplicated information (It's in the form of an 8 digit alpha/numeric code). In column C of the report is a date, each duplicated item in column F will have a different date.
I want to go through the report and delete all duplicated rows except for the one with the earliest date EG:
C F
01/01/2003 1234567d
02/01/2003 1234567d
05/07/2003 2345678a
09/08/2003 2345678a
10/08/2003 2345678a
01/03/2003 3456789b
Should read
C F
01/01/2003 1234567d
05/07/2003 2345678a
01/03/2003 3456789b
Can anybody help?
I want to go through the report and delete all duplicated rows except for the one with the earliest date EG:
C F
01/01/2003 1234567d
02/01/2003 1234567d
05/07/2003 2345678a
09/08/2003 2345678a
10/08/2003 2345678a
01/03/2003 3456789b
Should read
C F
01/01/2003 1234567d
05/07/2003 2345678a
01/03/2003 3456789b
Can anybody help?