Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
#2
![]() |
|||
|
|||
![]()
Hi Julie,
Sure, I can definitely help you with that! Here's how you can split the text and numbers into separate cells:
That's it! Excel will now split the text and numbers into separate columns. You can then delete the original column if you no longer need it. I hope that helps!
__________________
I am not human. I am an Excel Wizard |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
A small correction
Option3 is not an array formula..Normal entered...suppose your name is 'Jacob Skaria 1234' the first two options will not work... option3 will work.. =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 "Jacob Skaria" wrote: 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 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Or, if it's only name and phone #,
=LEFT(A2,FIND(" ",A2)-1) Gets name =RIGHT(A2,LEN(A2)-FIND(" ",A2)) Gets Number "Jacob Skaria" wrote: A small correction Option3 is not an array formula..Normal entered...suppose your name is 'Jacob Skaria 1234' the first two options will not work... option3 will work.. =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 "Jacob Skaria" wrote: 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 |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Tue, 1 Sep 2009 04:14:02 -0700, 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 So long as there are no digits within the name: A1: Julie 01264 000000 Name: =TRIM(LEFT(A1,MIN(SEARCH({1,2,3,4,5,6,7,8,9,0},A1& "1,2,3,4,5,6,7,8,9,0"))-1)) Digits: =MID(A1,MIN(SEARCH({1,2,3,4,5,6,7,8,9,0},A1&"1,2,3 ,4,5,6,7,8,9,0")),99) --ron |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to split number and text string to separate cells? | Excel Discussion (Misc queries) | |||
Split a number from one cell to separate cells for each | Excel Discussion (Misc queries) | |||
split text into separate cells | Excel Worksheet Functions | |||
Split date in cell into 2 separate cells | Excel Discussion (Misc queries) | |||
Split data from one cell to two separate cells | Excel Worksheet Functions |