Formula needed for extracting a three part string

Cmadd18

New Member
Joined
Oct 25, 2017
Messages
5
HI Everyone, I would like some help with a formula please. I have a three part name and need to extract the first letter of the third name. An example would be in cell A1 I have the name John Joseph Smith. I need to extract the S from Smith into the cell B1. I have multiple three part names. What would you suggest? Thank you.
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Assuming the name is in A1 you can try:
Code:
=MID(A1,FIND(" ",SUBSTITUTE(A1," ","-",1))+1,1)
 
Upvote 0
Hi Again, What if the name has four and five names. An example would be John J. Bean Smith and I want to extra the S from S? The five word string would be John Joseph De La Smith. I still want to extract the S from Smith. Thanks
 
Upvote 0
Can you try this?

=MID(A1,FIND("@",SUBSTITUTE(A1," ","@",LEN(A1)-LEN(SUBSTITUTE(A1," ",""))))+1,1)
 
Upvote 0
Here is another formula for you to try...

=LEFT(TRIM(RIGHT(SUBSTITUTE(A1," ",REPT(" ",99)),99)))
 
Upvote 0
Hi Rick, Thank you for your formula it work great. It's nice to have this options and this is a time saver. Have a great day. ;)
 
Upvote 0

Forum statistics

Threads
1,215,507
Messages
6,125,207
Members
449,214
Latest member
mr_ordinaryboy

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