Microsoft Excel - Filtering

I have a spreadsheet like so (actual spreadsheet has over 46,000 records and ~400 unique names in column A):



A 1/1/2001
A 2/1/2001
A 3/1/2001
B 2/2/2002
B 3/2/2002
B 4/2/2002
C 3/3/2003
C 4/3/2003
C 5/3/2003


For each unique name in column A, I need to extract the earliest date that belongs to that name.

What’s the easiest way to do this?

Thanks.

I’d create a Pivot Table using the MIN() function on the date.

Btw, I recently found out that youtube has lots of videos showing how to create Pivot Tables and Pivot Reports which will probably be easier than trying to read a step-by-step text description of what to do.

You could probably use a pivot table, or you could do to following:

Sort your data by column A then column B. Add a column C with a formula starting in C2: (If (A1==A2, C1+1, 1). Set C1 to 1.

Then put an autofilter on your data and select just the “1s” from column C.

That’s almost exactly what I’d do. Can you sort by column A? If so, say “Does this cell match the one above it? If so, “duplicate”. If not, “First occurrence””. One way is:
=EXACT(A1, A2) <----Says “FALSE” if it’s the first occurance, “TRUE” if it’s not.

Make sure you sort the list first. And put it in a new column. Then filter it by that.

I will just add that in order to filter unique values within a column, you do have to have that column sorted.

Thanks for the help. This thread is getting bookmarked since I’m going to be doing this on a regular basis.

I’m not sure how you mean this. I just built a really simple table:

A…1…X
B…2…T
C…1…U

I then turned on autofilter and was able to pick just the 1s in column 2.