Hello Everyone,
I am trying to find a way/formula to extract address direction into one row and the street name in separate row. The address come in different format and the Direction is not always there. (Directions are North, West, South, East, NE. etc..)
For example A1: 1230 North Bam Bam Street
Result would be: A2 = North ; A3 = Bam Bam Street
Here are what I tried so far
1. =RIGHT(A1,LEN(A1)-SEARCH({"North","South"}, A1)-1) ..... if I use this formula, then it will flash spill into multiple rows based on {"North","South"}
2. =TRIM(MID(SUBSTITUTE($A1," ",REPT(" ",LEN($A1))),COLUMNS($A1:B1)*LEN($A1)-(LEN($A1)-1),LEN($A1))) ....... if I use this one to split as delimiter then the return value not always in the same nth column
3. =IFERROR(INDEX(Directions!A1:A18,MATCH(TRUE,ISNUMBER(SEARCH(Directions!A1:A18,A2)),0)),"").......if I use this one, sometime it return the directions pulling from the hard coded list even when the address doesn't contain the direction
4. =IFERROR(RIGHT(A1,LEN(A1) - SEARCH(" ", A1, SEARCH(" ", 1) + 2)),"")......if I use this then the Street name return as "north Bam Bam Street"
I'm not an expert by any mean, any feedback is greatly appreciated
Various Address Format
123 W. 10th Street
1234 Two Ways Blvd, Apt #2
9890 West Paseo De Charros Dr.
Bookmarks