Finding All First of Sequence in a Table

Innoguide

Board Regular
Joined
Sep 13, 2011
Messages
159
I have a table of dates (column B) associated with event Identifiers (Column A) and need a formula in column C that will find the first date for each event as shown in the table below.

I've been playing with Index-Match and know that if the row is the min of all the rows where the event is the same as that row, then the result should be "First" otherwise "" but am struggling to get the correct formula
Here is what I was trying but am missing something
=IF(b2=MIN(INDEX(b$2:b$15,MATCH(a2,a$2:a$15))),"First","")

Any suggestions for a formula would be greatly appreciated

ABC
1EventDateFirst in Sequence
2F1-1231/2/2019
3F1-1231/7/2019
4F1-1231/7/2019
5F1-1231/1/2019
6F7-1252/1/2019
7F7-1252/5/2019
8F7-1252/7/2019
9F7-1251/15/2019First
10F7-1252/1/2019
11R2-1234453/1/2019First
12R2-1234453/15/2019
13R2-1234453/12/2019
14F7-1253/15/2019
15F1-12312/25/2018First

<tbody>
</tbody>
 
Last edited:

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Array formula in C2 copied down
=IF(B2=MIN(IF(A$2:A$15=A2,B$2:B$15)),"First","")
confirmed with Ctrl+Shift+Enter, not just Enter

M.
 
Upvote 0

Forum statistics

Threads
1,214,611
Messages
6,120,513
Members
448,967
Latest member
screechyboy79

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top