Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have street addresses in 1 column - I want to seperate into 2 columns the
first being the number and the second being the street name. I'm using the function MID but I have to keep changing when amount of numbers difer. Must be a better way. Thanks |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try: Data Text to Columns
"Bobby" wrote: I have street addresses in 1 column - I want to seperate into 2 columns the first being the number and the second being the street name. I'm using the function MID but I have to keep changing when amount of numbers difer. Must be a better way. Thanks |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
With
A1 containing a street address.....eg: 123 Main Street Try something like this: B1: =LEFT(A1,FIND(" ",A1)-1) C1: =MID(A1,FIND(" ",A1)+1,255) In the above example, B1 returns "123" C1: returns "Main Street" Is that something you can work with? *********** Regards, Ron XL2002, WinXP "Bobby" wrote: I have street addresses in 1 column - I want to seperate into 2 columns the first being the number and the second being the street name. I'm using the function MID but I have to keep changing when amount of numbers difer. Must be a better way. Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I seperate a 10 digit number into one cell for each number? | Excel Discussion (Misc queries) | |||
How do I seperate a full name field out into three seperate columns? | Excel Worksheet Functions | |||
how do I convert cell 'Street,#' to '# Street' these are addresse | Excel Worksheet Functions | |||
How do I seperate data from a pivot into seperate worksheets? | Excel Discussion (Misc queries) | |||
How do I sort a column of street number/street name by the stree. | Excel Worksheet Functions |