I have a cell that contains a full address e.g. Flat 10, 1 London Road, Bromley, Kent, BR1 1AA. I would like to be able to extract each of the parts of the address that are seperated by a comma.
I have managed to get the first line with:
And the second with:
But I don't know how to get the third, fourth and fifth.
Any help would be greatly appreciated.
Many thanks.
I have managed to get the first line with:
Code:
=LEFT(A1,FIND(", ",A1-1)
And the second with:
Code:
=SUBSTITUTE(MID(SUBSTITUTE("," & A1&REPT(" ",6),",",REPT(",",255)),2*255,255),",","")
But I don't know how to get the third, fourth and fifth.
Any help would be greatly appreciated.
Many thanks.