How to separate the content of a cell?

luisurquiza

New Member
Joined
Apr 14, 2004
Messages
2
Hi, I have the next problem. In one of the excel cells I have a full name. What I would like to have is find an automated way to have the first name in one cell, and the last name on another. Is that possible??? If so, how can I do it?

Example

A
1 Luis Urquiza

I would like to have it:

A B C
1 Luis Urquiza Luis Urquiza

The list I have has over 3000 names, that's why I'm looking for an easy way to make the split

Thanks a lot in advance!!
Luis
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
If it's just a first name and last name then use the following:
For the first name:
Code:
=LEFT(A1,FIND(" ",A1)-1)
for the last name:
Code:
=RIGHT(A1,LEN(A1)-FIND(" ",A1))
 
Upvote 0
Hi

Data>TextToColumns>Delimited>Check Space delimiter>Finish

This method does assume that you have no names with three space-separated words (like Tom James Smith for example).
 
Upvote 0

Forum statistics

Threads
1,214,987
Messages
6,122,614
Members
449,091
Latest member
gaurav_7829

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