haulinoats
New Member
- Joined
- Jun 7, 2016
- Messages
- 6
I am trying to perform an analysis in excel to determine which addresses may potentially the same. I'd like to extract only the street address (without the street suffix) into a new column.
Data:
[TABLE="width: 491"]
<colgroup><col></colgroup><tbody>[TR]
[TD]541 153RD ST[/TD]
[/TR]
[TR]
[TD]541 153RD ST APT 1[/TD]
[/TR]
[TR]
[TD]123 ROOSEVELT AVE # A[/TD]
[/TR]
[TR]
[TD]123 ROOSEVELT AVE[/TD]
[/TR]
[TR]
[TD]123 NW 4TH PL[/TD]
[/TR]
[TR]
[TD]123 NW 4TH PL[/TD]
[/TR]
</tbody>[/TABLE]
Current formulas:
Column B: =MID(S2,FIND(" ",S2)+1,50) - Result: 153RD ST
Column C: =LEFT(T2,FIND(" ",T2)-1) - Final Result: 153rd
Although this works well, my 3rd street address above (123 NW 4th PL) only extracts the NW instead of NW 4TH. I know there is probably a way to extract the entire street name for this scenario, but am struggling to do so.
Data:
[TABLE="width: 491"]
<colgroup><col></colgroup><tbody>[TR]
[TD]541 153RD ST[/TD]
[/TR]
[TR]
[TD]541 153RD ST APT 1[/TD]
[/TR]
[TR]
[TD]123 ROOSEVELT AVE # A[/TD]
[/TR]
[TR]
[TD]123 ROOSEVELT AVE[/TD]
[/TR]
[TR]
[TD]123 NW 4TH PL[/TD]
[/TR]
[TR]
[TD]123 NW 4TH PL[/TD]
[/TR]
</tbody>[/TABLE]
Current formulas:
Column B: =MID(S2,FIND(" ",S2)+1,50) - Result: 153RD ST
Column C: =LEFT(T2,FIND(" ",T2)-1) - Final Result: 153rd
Although this works well, my 3rd street address above (123 NW 4th PL) only extracts the NW instead of NW 4TH. I know there is probably a way to extract the entire street name for this scenario, but am struggling to do so.