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

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
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,214,631
Messages
6,120,645
Members
448,974
Latest member
DumbFinanceBro

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