#1   Report Post  
Simon
 
Posts: n/a
Default Help!! Formulas

Can anyone help??

I have a name in cell A1, but I want to split the name into cells A2 and A3.
eg, A1 = Simon Thomas, I want B1 to = Simon & C1 to = Thomas
Does anyone know the formula for this??

Thank you in advance
  #2   Report Post  
Domenic
 
Posts: n/a
Default

Assuming that names contain first and last name only...

First name:

=LEFT(A1,FIND(" ",A1)-1)

Last name:

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

Hope this helps!

In article ,
"Simon" wrote:

Can anyone help??

I have a name in cell A1, but I want to split the name into cells A2 and A3.
eg, A1 = Simon Thomas, I want B1 to = Simon & C1 to = Thomas
Does anyone know the formula for this??

Thank you in advance

  #3   Report Post  
Duke Carey
 
Posts: n/a
Default

To get the first portion

=LEFT(A1,SEARCH(" ",A1,1)-1)

to get the last portion

=RIGHT(A1,LEN(A1)-SEARCH(" ",A1,1))

This will not address cases where you have names such as

Saint James Susan or Billy Bob Thornton

but will work for standard 2 name entries



"Simon" wrote:

Can anyone help??

I have a name in cell A1, but I want to split the name into cells A2 and A3.
eg, A1 = Simon Thomas, I want B1 to = Simon & C1 to = Thomas
Does anyone know the formula for this??

Thank you in advance

  #4   Report Post  
Bob Phillips
 
Posts: n/a
Default

You could just copy column A to B, and then use DataText To Columns with a
space delimiter.

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Simon" wrote in message
...
Can anyone help??

I have a name in cell A1, but I want to split the name into cells A2 and

A3.
eg, A1 = Simon Thomas, I want B1 to = Simon & C1 to = Thomas
Does anyone know the formula for this??

Thank you in advance



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem with named formula's nathan Excel Worksheet Functions 0 January 21st 05 04:07 PM
Formulas Stan Excel Worksheet Functions 3 January 21st 05 02:58 PM
How to make Excel run limited number of formulas on a given worksh John Excel Discussion (Misc queries) 0 January 12th 05 04:29 PM
Way to make Excel only run certain formulas on a worksheet? jrusso Excel Discussion (Misc queries) 0 January 12th 05 04:23 PM
calculating formulas for all workbooks in a folder Chad Excel Worksheet Functions 3 November 13th 04 05:22 PM


All times are GMT +1. The time now is 10:44 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"