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.

Signature
HTH,
RD
---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
> This doen't seem to work because it's to complicated please just answer how
> can we remove thw last word of whole column
>
> > 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 ?
Ragdyer - 30 Dec 2007 20:04 GMT
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," ","")))))

Signature
Regards,
RD
---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
> Here's a text formula.
> With names starting in A1, enter this in B1:
[quoted text clipped - 9 lines]
> > > 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 ?
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

Signature
Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm
> This doen't seem to work because it's to complicated please just answer how
> can we remove thw last word of whole column
>
>> 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 ?
=TRIM(RIGHT(SUBSTITUTE(A1," ",REPT(" ",99)),99))
> This doen't seem to work because it's to complicated please just answer how
> can we remove thw last word of whole column
>
> > 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 ?
Ragdyer - 30 Dec 2007 23:52 GMT
Nice!

Signature
Regards,
RD
---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
> =TRIM(RIGHT(SUBSTITUTE(A1," ",REPT(" ",99)),99))
>
[quoted text clipped - 3 lines]
> > > 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 ?