View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Jacob Skaria Jacob Skaria is offline
external usenet poster
 
Posts: 8,520
Default split text and numbers into separate cells

Hi Julie

Option1: From menu DataText to columnsSpace delimiter..

Option2: (If space between name and number) With data in cell A1; in cell B1
enter the formula
=MID(A1,FIND(CHAR(32),A1)+1,LEN(A1))

Option3: Incase you dont have space between name and phone number
Please note that this is an array formula. Within the cell in edit mode (F2)
paste this formula and press Ctrl+Shift+Enter to apply this formula. If
successful in 'Formula Bar' you can notice the curly braces at both ends like
"{=<formula}"

=MID(A1,MIN(SEARCH({0,1,2,3,4,5,6,7,8,9},A1&"01234 56789")),LEN(A1))


If this post helps click Yes
---------------
Jacob Skaria


"Julie" wrote:

Hi everyone
I have a column that has text and numbers (name and phone number) in example
Julie 01264 000000.

I need to be able to split out the telephone number into another column can
anyone help?

Thanks in advance

Julie