Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
This should not be a hard thing to do, but I can't get it. the city will
always be the same with only 2 different zips. Example: 1957 NE 6 ST DEERFIELD BEACH, FL 33441 2430 DEER CREEK C C BLVD APT 702-11 DEERFIELD BEACH, FL 33442 looking to extract "DEERFIELD BEACH, FL 33441" and move to the blank cell to the right? I want to create labels. Help would be greatly appreciated. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
The way I always have to do it is to start with a *.txt file. Open excel
and point to that txt file, choose delimited and your delimiter (coma,space or what ever) and finish the wizard. This will seperate everything, you can combine if you want with a simple =a1&b1 etc. copy/paste special/value and put it where you want. "Puzzled" wrote in message ... This should not be a hard thing to do, but I can't get it. the city will always be the same with only 2 different zips. Example: 1957 NE 6 ST DEERFIELD BEACH, FL 33441 2430 DEER CREEK C C BLVD APT 702-11 DEERFIELD BEACH, FL 33442 looking to extract "DEERFIELD BEACH, FL 33441" and move to the blank cell to the right? I want to create labels. Help would be greatly appreciated. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I'm puzzled too. Is that example in one cell or spread over multiple cells?
"Puzzled" wrote in message ... This should not be a hard thing to do, but I can't get it. the city will always be the same with only 2 different zips. Example: 1957 NE 6 ST DEERFIELD BEACH, FL 33441 2430 DEER CREEK C C BLVD APT 702-11 DEERFIELD BEACH, FL 33442 looking to extract "DEERFIELD BEACH, FL 33441" and move to the blank cell to the right? I want to create labels. Help would be greatly appreciated. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Puzzled,
If your data remains exactly like your example then all you need is =RIGHT(A1,25) in B1 and drag down as far as needed. (that's assuming your data is in A1 down) If your data is likely to change slightly such as DEERFIELD BCH, FL 33441 DEERFIELD BCH, FLORIDA 33441 etc. Then you will need a slightly different approach. HTH Martin "Puzzled" wrote in message ... This should not be a hard thing to do, but I can't get it. the city will always be the same with only 2 different zips. Example: 1957 NE 6 ST DEERFIELD BEACH, FL 33441 2430 DEER CREEK C C BLVD APT 702-11 DEERFIELD BEACH, FL 33442 looking to extract "DEERFIELD BEACH, FL 33441" and move to the blank cell to the right? I want to create labels. Help would be greatly appreciated. |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this:
=MID(A1,FIND("DEERFIELD",A1),99) "Puzzled" wrote: This should not be a hard thing to do, but I can't get it. the city will always be the same with only 2 different zips. Example: 1957 NE 6 ST DEERFIELD BEACH, FL 33441 2430 DEER CREEK C C BLVD APT 702-11 DEERFIELD BEACH, FL 33442 looking to extract "DEERFIELD BEACH, FL 33441" and move to the blank cell to the right? I want to create labels. Help would be greatly appreciated. |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
This should not be a hard thing to do, but I can't get it. the city will
always be the same with only 2 different zips. Example: 1957 NE 6 ST DEERFIELD BEACH, FL 33441 2430 DEER CREEK C C BLVD APT 702-11 DEERFIELD BEACH, FL 33442 looking to extract "DEERFIELD BEACH, FL 33441" and move to the blank cell to the right? I want to create labels. Help would be greatly appreciated. I think you will need to use two columns in order to make your labels from. Taking you at your word that the city part will always be the same except for the numbers making up the zip code, and assuming your first address is in B2 (I presume the name is in column A and you have headers), put these in the next two columns... C2: =LEFT(B2,LEN(B2)-26) D2: =RIGHT(B2,25) and copy down. Rick |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thank You! Thank You Thank You! It Worked!
You are a genious!!! "Rick Rothstein (MVP - VB)" wrote: This should not be a hard thing to do, but I can't get it. the city will always be the same with only 2 different zips. Example: 1957 NE 6 ST DEERFIELD BEACH, FL 33441 2430 DEER CREEK C C BLVD APT 702-11 DEERFIELD BEACH, FL 33442 looking to extract "DEERFIELD BEACH, FL 33441" and move to the blank cell to the right? I want to create labels. Help would be greatly appreciated. I think you will need to use two columns in order to make your labels from. Taking you at your word that the city part will always be the same except for the numbers making up the zip code, and assuming your first address is in B2 (I presume the name is in column A and you have headers), put these in the next two columns... C2: =LEFT(B2,LEN(B2)-26) D2: =RIGHT(B2,25) and copy down. Rick |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How can I merge 4 excel columns to 1 column (street,city,st,zip | Excel Discussion (Misc queries) | |||
I wish to separate city, state, and zip into 3 separate columns | Excel Worksheet Functions | |||
city, state, zip in same cell | Excel Discussion (Misc queries) | |||
city, state, zip from a single cell to multiple cells | Excel Discussion (Misc queries) | |||
Splitting City State Zip | Excel Worksheet Functions |