Split Names

D

dk

How can we split the last names to another cell ?
Als if we have Mr & mrs john doe mike how can we split the title ?
 
F

FSt1

hi
you might try using text to columns.
on the menu bar....
Data>text to columns...>follow the wizzard.

If your have a lot of names of varing lengths, with and without titles, you
may have problems. you may need to group name of similar length and title so
that you can parce the data in blocks or groups. otherwise you may have to do
i one name at a time. also when parcing data, make sure you have enough blank
cells to the right of the data you are parcing because this function will
overwrite data to the right.

regards
FSt1
 
F

FSt1

hi again,
afterthought.
if this is the first time you are using this feature, make a copy of your
name list just in case.

Regards
FSt1
 
D

dk

This doen't seem to work because it's to complicated please just answer how
can we remove thw last word of whole column
 
R

Ragdyer

Here's a text formula.
With names starting in A1, enter this in B1:

=RIGHT(A1,LEN(A1)-SEARCH("^^^",SUBSTITUTE(A1,"
","^^^",LEN(A1)-LEN(SUBSTITUTE(A1," ","")))))

And copy down as needed.
 
R

Ragdyer

The line wrap may present a problem.

Try this if you have trouble with the first formula:

=RIGHT(A1,LEN(A1)-FIND("^^^",SUBSTITUTE(A1," ","^^^",
LEN(A1)-LEN(SUBSTITUTE(A1," ","")))))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top