Removing a 1st initial

nyrfan

Board Regular
Joined
Feb 6, 2006
Messages
130
I have lot off cells containing names, the problem is the name are list as:

F Jones
P Diddy
etc

Is there a way to format the cells to remove the 1st initial leaving on the last name?
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Highlight the column witht he names, then click Data > Text to columns > Use delimited > select Space. Click OK.
 
Upvote 0
Hi,

if it's always one character + a space you can use
=RIGHT(A1,LEN(A1)-2)

kind regards,
Erik

EDIT: if you can have items like
PH Jones
then use
=MID(A1,SEARCH(" ",A1)+1,999)
 
Upvote 0
for your information
in =MID(a2,FIND(" ",a2)+1,LEN(a2)-FIND(" ",a2)+1)
you don't need the "+1" at the end, as far as I can see

to reduce calculationtime I simply used "999" (large number: names will never be this long)
 
Upvote 0
Where do I put that formula, directly into the cell. I keep et "Circular refrence"
put formula in next column
copy down as needed
select column with formulas
copy
pastevalues (rightclick pastespecial select "values")

could be done using VBA if you want to do this often
 
Upvote 0

Forum statistics

Threads
1,215,006
Messages
6,122,665
Members
449,091
Latest member
peppernaut

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