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

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
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,701
Messages
6,126,297
Members
449,308
Latest member
VerifiedBleachersAttendee

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