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

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
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,216,156
Messages
6,129,192
Members
449,492
Latest member
steveg127

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