Text to column formulas with multiple line break delimiters

CFSJohn

New Member
Joined
Nov 7, 2018
Messages
3
Hi All, I am looking for some assistance with developing a formula to break up a cell into multiple columns. I have 4 lines to the cell. i need to combine line 1 and 2, break up line 3 into 3 separate cells and then delete the 4th line. I am looking for a formula as I am working on a template so I can drop 13000 lines of data into it and it will break it up for me. the other hiccup is that over the 13000 lines the cell pattern is not always 4 lines. The last line is always Australia. A couple of examples are:

256
Sturt Valley Road
Upper Sturt SA 5156
Australia

1708
Riddoch Highway
Keith SA 5267
Australia

<tbody>
</tbody>

Aylett Street
Coober Pedy SA 5723
Australia

The format I am looking to create is:
PAddr1PAddrSuburbPAddrStatePAddrPCode

<colgroup><col><col><col><col></colgroup><tbody>
</tbody>
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Hi,

I'm a little confused about
the other hiccup is that over the 13000 lines the cell pattern is not always 4 lines

I assume you mean something like your 3rd sample where there's no address #

Since I read something about Australian Postcodes being converted from 4 to 5 digits, and States are Not Always 2 characters, use D1 and E1 formulas which will accommodate Any length Postcode and States.
I've included alternate formulas ( G1 and H1 ) where the Postcode would Always be 4 digits, and the State is Always 2 characters.


Book1
ABCDEFGH
1256 Sturt Valley Road Upper Sturt SA 5156 Australia256 Sturt Valley RoadUpper SturtSA5156SA5156
21708 Riddoch Highway Keith SA 5267 Australia1708 Riddoch HighwayKeithSA5267SA5267
3Aylett Street Coober Pedy SA 5723 AustraliaAylett StreetCoober PedySA5723SA5723
Sheet355
Cell Formulas
RangeFormula
B1=TRIM(SUBSTITUTE(LEFT(SUBSTITUTE(A1,CHAR(10),REPT(" ",99),LEN(A1)-LEN(SUBSTITUTE(A1,CHAR(10),""))-1),99),CHAR(10)," "))
C1=TRIM(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(A1,CHAR(10)," "),"Australia",""),B1,""),D1&" "&E1,""))
D1=TRIM(RIGHT(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(A1,CHAR(10)&"Australia","")," "&E1,"")," ",REPT(" ",99)),99))
E1=TRIM(RIGHT(SUBSTITUTE(SUBSTITUTE(A1,CHAR(10)&"Australia","")," ",REPT(" ",99)),99))
G1=RIGHT(SUBSTITUTE(SUBSTITUTE(A1,CHAR(10)&"Australia","")," "&E1,""),2)
H1=RIGHT(SUBSTITUTE(A1,CHAR(10)&"Australia",""),4)


Formulas copied down.
 
Last edited:
Upvote 0
That is awesome and what I was looking to create. I have tried playing with the formulas to do similar with a Postal Address. The cell has the below properties. I have been able to extract the state and postcode, but cant seem to separate the PO Box info from the suburb. The digits for the PO box could be any number between 1 and 2999. Below is an an example of the text

PO BOX 382 Birdwood SA 5234

<tbody>
</tbody>
 
Upvote 0
I need to see the PO BOX data/text string as it shows in your cell, with line breaks, if any.
If there's more than 1 variation, show all possible.
 
Upvote 0
Hi jtakw,

The Po Box data that I am trying to figure out is

PO BOX 382 Birdwood SA 5234

There is no line breaks in the PO box fields. That was only in the other fields which I have sorted out.

<tbody>
</tbody>
 
Upvote 0
Ok, your response implies that the Text Strings for PO BOX are completely "Separate" from the text strings as discussed in previous posts.

See how these work for you.


Book1
ABCDE
1PO BOX 382 Birdwood SA 5234PO BOX 382BirdwoodSA5234
2P.O. Box 382 Birdwood Street SA 5234P.O. Box 382Birdwood StreetSA5234
3PO BOX 3824 Birdwood SA 5234PO BOX 3824BirdwoodSA5234
4P.O. Box 2 Birdwood Street SA 5234P.O. Box 2Birdwood StreetSA5234
Sheet363
Cell Formulas
RangeFormula
B1=LEFT(A1,FIND(" ",A1,SEARCH("Box",A1)+4)-1)
C1=TRIM(SUBSTITUTE(SUBSTITUTE(A1,B1,""),D1&" "&E1,""))
D1=TRIM(RIGHT(SUBSTITUTE(SUBSTITUTE(A1," "&E1,"")," ",REPT(" ",99)),99))
E1=TRIM(RIGHT(SUBSTITUTE(A1," ",REPT(" ",99)),99))
 
Upvote 0

Forum statistics

Threads
1,214,827
Messages
6,121,820
Members
449,049
Latest member
cybersurfer5000

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top