Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
How can I take a cell with a street address (345 Beaverbrook Avenue) and
remove the "345", and place it the previous blank cell in order to split the civic number and street name into separate cells for sorting purposes? So |345 Beaverbrook Avenue| becomes |345|Beaverbrook Avenue|. Probably easy when you know how. Thanks. RT |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
The number:
=VALUE(LEFT(A1,FIND(" ",A1)-1)) The streetname: =RIGHT(A1,LEN(A1)-FIND(" ",A1)) -- Kind regards, Niek Otten Microsoft MVP - Excel "Canuck" wrote in message ... | How can I take a cell with a street address (345 Beaverbrook Avenue) and | remove the "345", and place it the previous blank cell in order to split the | civic number and street name into separate cells for sorting purposes? | | So |345 Beaverbrook Avenue| becomes |345|Beaverbrook Avenue|. | | Probably easy when you know how. Thanks. | | RT | | | |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
cell address | Excel Worksheet Functions | |||
Instead of a negative number, I'd like to show zero... | Excel Worksheet Functions | |||
enter numbers in blank cells | Excel Worksheet Functions | |||
Match Last Occurrence of two numbers and Count to Previous Occurence | Excel Worksheet Functions | |||
How would I fill blank cells with the data from a previous cell? | Excel Discussion (Misc queries) |