Return earliest date a name appears in a column (within group of names)

jlive24

New Member
Joined
Dec 18, 2018
Messages
5
Hi All,

I have a spreadsheet that contains a list of transactions. Column A contains each transaction ID, Column B contains all individuals involved in the transaction (delimited with semi-columns), column C contains the transaction dates, and Column E contains a list of all unique individuals. For each individual in Column E, I would like to return the date of the earliest transaction they were a part (this would go in Column F). Please see image below.

I believe I would know how to do this if Column B only contained unique names, but am having trouble since I'm having to search for partial text. Any suggestions?

2020-07-24_14-04-44.png
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
How about
=index(C$2:C$100,match("*"&E2&"*",B$2:B$100,0))

Although this will not find "Peter, James" as in column B it's "James, Peter"
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,343
Messages
6,124,400
Members
449,156
Latest member
LSchleppi

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