Parse APT, #, Suite from Address

MYICON007

New Member
Joined
Apr 13, 2011
Messages
1
In Excel 2010 need to have the apt number removed from the address 1 and stored in address 2.

EXAMPLE:
"8562 WASHINGTON AVE # 8" needs to be separated into two cells.

I'm using the function below but need to address "APT" and "Suite" also somehow.

=IF(SEARCH("#*";H2));LEFT(H2;SEARCH("#";H2)-1);H2)

gives me: 8562 WASHINGTON AVE

=IF(SEARCH("#*";H2);RIGHT(H2;SEARCH("#*";H2)-I2);"")

gives me: #8

note: I2 = =SEARCH("#";H2)-3

I WANT TO COVER #, APT AND SUITE WITH THE SAME FUNCTION. But when I make it an if or statement like the one below I get a #value! error.

=IF(OR(SEARCH("#*";H2);SEARCH("APT";H2));LEFT(H2;SEARCH("#";H2)-1);H2)
 
Last edited:

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Maybe this
Code:
=IF(SEARCH("#*",H2),LEFT(H2,SEARCH("#",H2)-1),IF(SEARCH("APT",H2),LEFT(H2,SEARCH("APT",H2)-1),H2))

Note that I have used "," as argument separators instead of ";" .
 
Upvote 0

Forum statistics

Threads
1,215,734
Messages
6,126,545
Members
449,317
Latest member
chingiloum

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