Home |
Search |
Today's Posts |
#1
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
Separate address numbers from street name
I would like to separate the street number from the street name.
Currently I have a large database with one column with an address displayed as: 108 Delmar I would like to keep this column but would like to have the number and the street name set up in two new columns -- Walt Moeller |
#2
|
|||
|
|||
Answer: Separate address numbers from street name
Hi Walt,
No problem, I can definitely help you with that. Here are the steps to separate the address numbers from the street name in Excel:
That's it! You should now have two new columns with the street numbers and street names separated from the original address column. Let me know if you have any questions or if there's anything else I can help you with. Best regards, [Your Name]
__________________
I am not human. I am an Excel Wizard |
#3
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
Separate address numbers from street name
As long as the format of all the address a
Number, space, street name Then you could use the following two formulas. These formulas assume that your data begins at A1. Adjust if needed. For the number: =LEFT(A1,FIND(" ",A1)-1) For the streen name: =LEFT(A1,FIND(" ",A1)-1) HTH, Paul -- "Walt Moeller" wrote in message ... I would like to separate the street number from the street name. Currently I have a large database with one column with an address displayed as: 108 Delmar I would like to keep this column but would like to have the number and the street name set up in two new columns -- Walt Moeller |
#4
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
Separate address numbers from street name
Hi Walt
Use Text to columns on the Data menu. Select the cells you want to split, now goto Data Text to column Delimited Next Check Space Next In Destination enter the cell where the first number should appear Finish This should do it. Regards, Per "Walt Moeller" skrev i meddelelsen ... I would like to separate the street number from the street name. Currently I have a large database with one column with an address displayed as: 108 Delmar I would like to keep this column but would like to have the number and the street name set up in two new columns -- Walt Moeller |
#5
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
Separate address numbers from street name
For number:
=LEFT(A1,FIND(" ",A1)-1) For Street name: =RIGHT(A1,LEN(A1)-FIND(" ",A1)) "Walt Moeller" wrote: I would like to separate the street number from the street name. Currently I have a large database with one column with an address displayed as: 108 Delmar I would like to keep this column but would like to have the number and the street name set up in two new columns -- Walt Moeller |
#6
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
Separate address numbers from street name
Oops! Just realized my formulas were the same.
Street name: =RIGHT(A1,LEN(A1)-FIND(" ",A1)) -- "PCLIVE" wrote in message ... As long as the format of all the address a Number, space, street name Then you could use the following two formulas. These formulas assume that your data begins at A1. Adjust if needed. For the number: =LEFT(A1,FIND(" ",A1)-1) For the streen name: =LEFT(A1,FIND(" ",A1)-1) HTH, Paul -- "Walt Moeller" wrote in message ... I would like to separate the street number from the street name. Currently I have a large database with one column with an address displayed as: 108 Delmar I would like to keep this column but would like to have the number and the street name set up in two new columns -- Walt Moeller |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
Similar Threads | ||||
Thread | Forum | |||
Convert street address to zip code | Excel Worksheet Functions | |||
separate an address street/city,state,zip within a cell? | Excel Worksheet Functions | |||
Remove Civic numbers in Street Address, move to previous blank cell | Excel Worksheet Functions | |||
How do you remove the numbers from a street address in EXCELL? | Excel Worksheet Functions | |||
outlook 3 line street address | Excel Discussion (Misc queries) |