problems with search and fill string

SPONELLE

New Member
Joined
Aug 3, 2007
Messages
5
Have one field which is quite large and includes location, part of the sting is # BOT #, the BOT is a site name and changes from row to row. eg. # TRA # or # MOR # ,etc.

I have a string below which can find one off location and provide entry into a separate cell (see F1 below).

=IF(SUM(ISNUMBER(SEARCH({"# BOT #"},$E2))+0),"BOT","")

The search F2 below can find all of the different sites, but will not fill with the same letter string as found.

=IF(SUM(ISNUMBER(SEARCH({"# *** #"},$E2))+0),"BOT","")

i.e. # MOR # returns MOR, # TRA # returns TRA, etc

Any ideas?
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Have one field which is quite large and includes location, part of the sting is # BOT #, the BOT is a site name and changes from row to row. eg. # TRA # or # MOR # ,etc.

I have a string below which can find one off location and provide entry into a separate cell (see F1 below).

=IF(SUM(ISNUMBER(SEARCH({"# BOT #"},$E2))+0),"BOT","")

The search F2 below can find all of the different sites, but will not fill with the same letter string as found.

=IF(SUM(ISNUMBER(SEARCH({"# *** #"},$E2))+0),"BOT","")

i.e. # MOR # returns MOR, # TRA # returns TRA, etc

Any ideas?

=IF(SUM(ISNUMBER(SEARCH("# *** #",$E2))+0),TRIM(MID($E2,SEARCH({"# *** #"},$E2)+1,4)),"")
 
Upvote 0

Forum statistics

Threads
1,214,394
Messages
6,119,263
Members
448,881
Latest member
Faxgirl

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