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

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
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,214,998
Messages
6,122,643
Members
449,093
Latest member
Ahmad123098

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