Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
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 ? |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
hi
you might try using text to columns. on the menu bar.... Datatext 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 "dk" wrote: 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 ? |
#3
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
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 "FSt1" wrote: hi you might try using text to columns. on the menu bar.... Datatext 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 "dk" wrote: 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 ? |
#4
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
DataText to Columns would be sufficient for just splitting out a firstname and
lastname. For more complex splitting see Chip Pearson's site. http://www.cpearson.com/excel/FirstLast.htm Note the downloadable workbook examples. Gord Dibben MS Excel MVP On Sun, 30 Dec 2007 10:28:00 -0800, dk wrote: 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 ? |
#5
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
This doen't seem to work because it's to complicated please just answer how
can we remove thw last word of whole column "dk" wrote: 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 ? |
#6
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
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. -- HTH, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- "dk" wrote in message ... This doen't seem to work because it's to complicated please just answer how can we remove thw last word of whole column "dk" wrote: 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 ? |
#7
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
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," ",""))))) -- Regards, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- "Ragdyer" wrote in message ... 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. -- HTH, RD -------------------------------------------------------------------------- - Please keep all correspondence within the NewsGroup, so all may benefit ! -------------------------------------------------------------------------- - "dk" wrote in message ... This doen't seem to work because it's to complicated please just answer how can we remove thw last word of whole column "dk" wrote: 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 ? |
#8
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
See this add-in
It will insert a new column in your table with a formula for you Look on the text tab http://www.rondebruin.nl/datarefiner.htm -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "dk" wrote in message ... This doen't seem to work because it's to complicated please just answer how can we remove thw last word of whole column "dk" wrote: 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 ? |
#9
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
=TRIM(RIGHT(SUBSTITUTE(A1," ",REPT(" ",99)),99))
"dk" wrote: This doen't seem to work because it's to complicated please just answer how can we remove thw last word of whole column "dk" wrote: 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 ? |
#10
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Nice!
-- Regards, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- "Teethless mama" wrote in message ... =TRIM(RIGHT(SUBSTITUTE(A1," ",REPT(" ",99)),99)) "dk" wrote: This doen't seem to work because it's to complicated please just answer how can we remove thw last word of whole column "dk" wrote: 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 ? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I split names from one column to two? | Excel Discussion (Misc queries) | |||
how do i split names in to two columns | Excel Discussion (Misc queries) | |||
Sorting and matching rows of names with Socials with master list and eliminating the extra names | Excel Worksheet Functions | |||
Split 2 names within a cell in excel | Excel Worksheet Functions | |||
Formula to Split First and Last Names | Excel Worksheet Functions |