Finding, searching, lookingup a value

evjatar

New Member
Joined
Jul 27, 2002
Messages
1
I have column A with 8000 text values (8000 rows) (e.g., RARUS03; RARUS43;etc.).
I have column C with 1500 text values (list of titles that may or may not include values equivalent to the text value in column A)(e.g., "Qualification of the RARUS03 Server", "Checklist for the RARUS43 Server").

What formula can I use for each of the 8000 text values in column A to check their presence as part of the text values listed in column C?
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
See the following setup:
Book1
ABCD
1RARUS03TRUEQualificationoftheRARUS03Server
2RARUS43TRUEChecklistfortheRARUS43Server
3RARUS44FALSEChecklistfortheRARUS43Server
Sheet1


You can also use FIND in place of SEARCH. The difference is that FIND is case sensitive and does not allow wild card characters (per the help file).
_________________
Hope this helps.
Kind regards,<font size="5"><sup><span style="text-decoration: overline">AL</span></sup><u><sub>CHARA</sub></u></font>
This message was edited by Al Chara on 2002-07-28 11:35
 
Upvote 0
Hi Al Chara:

I was wondering about your searching for the cell A1 value in the corresponding cell C1 only -- my hunch is that the search may have to be conducted in the entire list in column C -- what do you think?

If the search has to be conducted in the entire list in column C, then one of the ways will be to use an array formula like the one in the following simulation:
Book1
ABCD
1RARUS03TRUEChecklistfortheRARUS03Server
2RARUS43TRUEChecklistfortheRARUS43Server
3RARUS44TRUEChecklistfortheRARUS46Server
4PARUS04FALSEChecklistfortheRARUS44Server
5RARUS45FALSEChecklistfortheRARUS07Server
6PARUS05FALSEChecklistfortheRARUS44Server
7RARUS46TRUEChecklistfortheRARUS46Server
8PARUS06FALSEChecklistfortheRARUS44Server
9RARUS47FALSEChecklistfortheRARUS43Server
10RARUS03TRUE
11RARUS07TRUE
12PARUS08FALSE
13RARUS44TRUE
Sheet4


Perhaps the OP can shed some more light on what the real requirements are.

Regards!

Yogi Anand
 
Upvote 0
Good point Yogi. That situation didn't even cross my mind. But you are probably right.

Note: the following formula is the same thing: =COUNT(SEARCH(A1,$C$1:$C$9,1))>0
You don't need the IF formula.

Al
This message was edited by Al Chara on 2002-07-28 16:32
 
Upvote 0

Forum statistics

Threads
1,215,059
Messages
6,122,913
Members
449,093
Latest member
dbomb1414

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