Find specific text

mattyman

New Member
Joined
Feb 15, 2004
Messages
22
Hello All

I need to pull a specific word from a string of text in a cell and have that word shown in an adjacant cell.
For example A1 will contain the text "Smith Sun Alliance Pension Fund"
I need B2 to show "Pension". I cannot use any filtering or text to columns as the word Pension can be anywhere within the text in A1 and I have thousands of entries. So I need a function.

Help would be as always greatly appreciated.

Thanks

Matt
 
Given:
suppose i have the following in a range A1:A999.
A1:[Event "1st American Chess Congress"]

<TBODY>
</TBODY>

A2.EventDate "1857.??.??"]

<TBODY>
</TBODY>

A3:[Date "1857.10.23"]

<TBODY>
</TBODY>


A4;[Event "Lugano Ol"]

<TBODY>
</TBODY>

A5:[EventDate "?"]

<TBODY>
</TBODY>

A6:[Event "Rubinstein mem"]
A7:[EventDate "?"]

<TBODY>
</TBODY>


<TBODY>
</TBODY>
NOW I want that excel on column B show "erase me" against rows A1.A4,A6.

B1, copied down:

=IF(COUNT(SEARCH($E$1&"|",A1&"|")),"erase","")

since the purpose is to delete the rows with "erase me" is it possible to find and delete in one go

Formulas cannot erase/delate cells they refer to. Apply Autofilter and delete every record marked with erase in B.
 
Upvote 0

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Aladin Akyurek,


[=IF(COUNT(SEARCH($E$1&"|",A1&"|")),"erase","")/QUOTE]
i have pasted the formula in B1 and copied down .

it gives me the result "erase" in all the columns in B irrespective of the contents in col A
 
Last edited:
Upvote 0
Aladin Akyurek,




B1, copied down:

=IF(COUNT(SEARCH($E$1&" ",A1&" ")),"erase","")

See:
https://dl.dropboxusercontent.com/u/65698317/evergreen1.xlsx

t
Thanks a lot Aladin Akyurek,

you didn"t tell me to put the word event in E1
.now i got it and it works. thanks. have a nice day.
btw, i would like to know,why the formula doesn't pick the rows with eventdate?
what differentiates event and eventdate?
 
Last edited:
Upvote 0
You are welcome.



The formula is set up for looking event followed by space, i.e., $E$1&" ". the eventdate entry has no space between event and date, so it will be skipped.
thanks for the quick reply. i got it. but the same thing i would like to ammend like this
if the word "event" doesn't has a space then how would you frame the formula?(for learning purpose)
 
Upvote 0
thanks for the quick reply. i got it. but the same thing i would like to ammend like this
if the word "event" doesn't has a space then how would you frame the formula?(for learning purpose)

SEARCH gets anything with event in it:

SEARCH("event",A1)

In order not to get anything with event in it, the following formula enriches the event entry:

SEARCH("event ",A1&" ")

Adding a space after the event entry requires adding space also after the target string in A1 for event with space would match just event in A1, an unintended result.
 
Upvote 0
SEARCH gets anything with event in it:

SEARCH("event",A1)

In order not to get anything with event in it, the following formula enriches the event entry:

SEARCH("event ",A1&" ")

Adding a space after the event entry requires adding space also after the target string in A1 for event with space would match just event in A1, an unintended result.

SEARCH("event",A1)
when applied on B1 in post No21 i got the following
B1-5
B2-4
B3-#value
B4-5
B5-5
why this digits as results?
 
Upvote 0
Assuming we arrived at the same place with Aladin my formula which is a little longer than Aladin would do the same job but not need to have Event in E1. As you know there are usually more than 1 way to do the same thing in excel. However I still think there is a further clarification you have not yet declared that will change the result.

=IFERROR(IF(SEARCH("event ",A1&" "),"Erase",""),"")

Cheers
 
Upvote 0
when applied on B1 in post No21 i got the following
B1-5
B2-4
B3-#value
B4-5
B5-5
why this digits as results?

SEARCH looks for an item in a target string. If it locates the item, it reports at which position the item occurs with the target string. Hence those numbers, otherwise we get #VALUE!. COUNT that we used around SEARCH yields a 1 for a number, 0 for #VALUE!. Since a non-zero number means TRUE, we get "erase", otherwise "" with:

=IF(COUNT(SEARCH($E$1&" ",A1&" ")),"erase","")
 
Upvote 0

Forum statistics

Threads
1,217,388
Messages
6,136,307
Members
450,003
Latest member
AnnetteP

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