Formula to find a space in a cell and bring back the word after the space.

jswinney1996

New Member
Joined
Nov 18, 2017
Messages
8
I have cells that have names, I want to write a formula to from the right and find the space and return the last name only.

Example Cell A2 has John Doe I want a formula in Cell B2 that brings back just Doe.
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
This should work if the names are all first and last only, no middle name or initial.
Code:
=TRIM(MID(A2,SEARCH(" ",A2)+1,9999))
 
Upvote 0
This should work if the names are all first and last only, no middle name or initial.
Code:
=TRIM(MID(A2,SEARCH(" ",A2)+1,9999))
And if there could be middle names or initials, this formula will find the name (or word for that matter) after the last space no matter how many name parts (or words) are in the cell...

=TRIM(RIGHT(SUBSTITUTE(A2," ",REPT(" ",99)),99))
 
Upvote 0

Forum statistics

Threads
1,215,280
Messages
6,124,034
Members
449,139
Latest member
sramesh1024

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