Split the Last and Last Name

niladri20052006

Board Regular
Joined
Dec 3, 2010
Messages
121
Hi All,

I have a list consisting of more than 50,000+ data where i have contact names as follows

Reed, Jehri
Marani, Richard
Patel, Malav

This is arranged as last name then comma and then First Name. But I want the exactly opposite. The first Name will be the first and then Last name. I want to use the formula as I have already used "Text to Column" option.

Thanks in advance!
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Hi. Try

=RIGHT(A1,LEN(A1)-FIND(",",A1)-1)&" "&LEFT(A1,FIND(",",A1)-1)
 
Upvote 0
Hi All,

I have a list consisting of more than 50,000+ data where i have contact names as follows

Reed, Jehri
Marani, Richard
Patel, Malav

This is arranged as last name then comma and then First Name. But I want the exactly opposite. The first Name will be the first and then Last name. I want to use the formula as I have already used "Text to Column" option.

Thanks in advance!


If you want them into separate columns:
Excel Workbook
ABC
1FullNameFirstNameLastName
2Reed, JehriJehriReed
3Marani, RichardRichardMarani
4Patel, MalavMalavPatel
Sheet1
Excel 2010
Cell Formulas
RangeFormula
B2=RIGHT(A2,LEN(A2)-FIND(" ",A2))
B3=RIGHT(A3,LEN(A3)-FIND(" ",A3))
B4=RIGHT(A4,LEN(A4)-FIND(" ",A4))
C2=LEFT(A2,FIND(",",A2)-1)
C3=LEFT(A3,FIND(",",A3)-1)
C4=LEFT(A4,FIND(",",A4)-1)
 
Upvote 0
Hi VoG,

Thanks :). It is working fine.

However I have got another one also

=REPLACE(D2,1,FIND(",",D2)+1,"")&""&LEFT(D2,FIND(",",D2)-1)
 
Upvote 0
Hi VoG,

Thanks :). It is working fine.

However I have got another one also

=REPLACE(D2,1,FIND(",",D2)+1,"")&""&LEFT(D2,FIND(",",D2)-1)
Presumably you do have a space in the red bit.

=REPLACE(A1,1,FIND(",",A1)+1,"")&" "&LEFT(A1,FIND(",",A1)-1)


Here's a simpler one:

=MID(D2&" "&D2,FIND(" ",D2)+1,LEN(D2)-1)
 
Upvote 0

Forum statistics

Threads
1,224,514
Messages
6,179,219
Members
452,895
Latest member
BILLING GUY

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