PC Review


Reply
Thread Tools Rate Thread

=IF(ISNUMBER(SEARCH("ELB", and more than one text

 
 
toto
Guest
Posts: n/a
 
      9th Sep 2009
Dear All,
The formula as below is describes a situation which I want
to search for the written letter ″ELB″ ,the below formula succeeded to
find the letter ″ELB″ and print the answer word "Pipe", which I need
to classify the word ″ELB″ underneath in the last column named
results ,in case if there is no letter ″ELB″ therefore the formula
results is =False in the same column of results .
=IF(ISNUMBER(SEARCH("ELB",B2)),"Pipe")

What I need now is to catch more letter plus the letters of ″ELB″ like
the letters of ″FLG″ for example or more if required, please advice.

** I am sorry , I tried the range as you recommended ,but it was not
succeed ,because when I repeat the formula in the next row cell ,he
change the cells to the next one and I will add more classifications
categories not only the PIPE ,please advice.

Material M. description Results
1000787665 1" CAP FALSE
1000787987 1" CAP FALSE
1000788420 1" ELB. 10 Pipe
1000788419 1" ELB. 7 Pipe
1000788378 1" ELB.77 Pipe
1000787689 1" ELB.45 Pipe
1000787976 1" ELB.458 Pipe
1000787622 1" ELB.90 8 Pipe
1000788072 1" FLG BL FALSE
1000787024 1" FLG WN 8. FALSE
1000798135 1" FLG WN 8 FALSE
1000786967 1" FLG WN 447. FALSE
1000788175 1" FLG WN44 FALSE
1000788160 1" FLG. 44 FALSE
1000786940 1" FLG. WN.. FALSE
1000788230 1" FLG. WN. FALSE
1000788248 1" FLG. WN. RF FALSE
1000788192 1" FLG. WN. T FALSE
1000786956 1" FLG. WN. 2. FALSE
1000788262 1" FLG. WN. R8 FALSE
1000798962 1" GASKET FALSE
1000786754 1" NIPOLET FALSE

 
Reply With Quote
 
 
 
 
Mike H
Guest
Posts: n/a
 
      9th Sep 2009
Hi,

Try this

=IF(OR(ISNUMBER(SEARCH({"Elb","Flg","Thingy"},B2))),"Pipe")

Add more strings as required between the curly brackets.

If you want to eliminate FALSE try this

=IF(OR(ISNUMBER(SEARCH({"Elb","Flg","Thingy"},B3))),"Pipe","")

Mike

"toto" wrote:

> Dear All,
> The formula as below is describes a situation which I want
> to search for the written letter ″ELB″ ,the below formula succeeded to
> find the letter ″ELB″ and print the answer word "Pipe", which I need
> to classify the word ″ELB″ underneath in the last column named
> results ,in case if there is no letter ″ELB″ therefore the formula
> results is =False in the same column of results .
> =IF(ISNUMBER(SEARCH("ELB",B2)),"Pipe")
>
> What I need now is to catch more letter plus the letters of ″ELB″ like
> the letters of ″FLG″ for example or more if required, please advice.
>
> ** I am sorry , I tried the range as you recommended ,but it was not
> succeed ,because when I repeat the formula in the next row cell ,he
> change the cells to the next one and I will add more classifications
> categories not only the PIPE ,please advice.
>
> Material M. description Results
> 1000787665 1" CAP FALSE
> 1000787987 1" CAP FALSE
> 1000788420 1" ELB. 10 Pipe
> 1000788419 1" ELB. 7 Pipe
> 1000788378 1" ELB.77 Pipe
> 1000787689 1" ELB.45 Pipe
> 1000787976 1" ELB.458 Pipe
> 1000787622 1" ELB.90 8 Pipe
> 1000788072 1" FLG BL FALSE
> 1000787024 1" FLG WN 8. FALSE
> 1000798135 1" FLG WN 8 FALSE
> 1000786967 1" FLG WN 447. FALSE
> 1000788175 1" FLG WN44 FALSE
> 1000788160 1" FLG. 44 FALSE
> 1000786940 1" FLG. WN.. FALSE
> 1000788230 1" FLG. WN. FALSE
> 1000788248 1" FLG. WN. RF FALSE
> 1000788192 1" FLG. WN. T FALSE
> 1000786956 1" FLG. WN. 2. FALSE
> 1000788262 1" FLG. WN. R8 FALSE
> 1000798962 1" GASKET FALSE
> 1000786754 1" NIPOLET FALSE
>
>

 
Reply With Quote
 
 
 
 
driller
Guest
Posts: n/a
 
      9th Sep 2009
toto,

maybe someway like this...

place your search criteria
eg.
K1 = ELB
L1= FLG
M1 = CAP
then, use write formula like this
=IF(ISNUMBER(SEARCH(K1:M1,B2)),"Pipe")
hit CTRL+Shift+Enter

maybe not right,
driller

"toto" wrote:

> Dear All,
> The formula as below is describes a situation which I want
> to search for the written letter ″ELB″ ,the below formula succeeded to
> find the letter ″ELB″ and print the answer word "Pipe", which I need
> to classify the word ″ELB″ underneath in the last column named
> results ,in case if there is no letter ″ELB″ therefore the formula
> results is =False in the same column of results .
> =IF(ISNUMBER(SEARCH("ELB",B2)),"Pipe")
>
> What I need now is to catch more letter plus the letters of ″ELB″ like
> the letters of ″FLG″ for example or more if required, please advice.
>
> ** I am sorry , I tried the range as you recommended ,but it was not
> succeed ,because when I repeat the formula in the next row cell ,he
> change the cells to the next one and I will add more classifications
> categories not only the PIPE ,please advice.
>
> Material M. description Results
> 1000787665 1" CAP FALSE
> 1000787987 1" CAP FALSE
> 1000788420 1" ELB. 10 Pipe
> 1000788419 1" ELB. 7 Pipe
> 1000788378 1" ELB.77 Pipe
> 1000787689 1" ELB.45 Pipe
> 1000787976 1" ELB.458 Pipe
> 1000787622 1" ELB.90 8 Pipe
> 1000788072 1" FLG BL FALSE
> 1000787024 1" FLG WN 8. FALSE
> 1000798135 1" FLG WN 8 FALSE
> 1000786967 1" FLG WN 447. FALSE
> 1000788175 1" FLG WN44 FALSE
> 1000788160 1" FLG. 44 FALSE
> 1000786940 1" FLG. WN.. FALSE
> 1000788230 1" FLG. WN. FALSE
> 1000788248 1" FLG. WN. RF FALSE
> 1000788192 1" FLG. WN. T FALSE
> 1000786956 1" FLG. WN. 2. FALSE
> 1000788262 1" FLG. WN. R8 FALSE
> 1000798962 1" GASKET FALSE
> 1000786754 1" NIPOLET FALSE
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Like all great travelers, I have seen more than I remember andremember more than I have seen. shenrilaa@gmail.com Microsoft C# .NET 0 5th Mar 2008 04:27 AM
Why open more than one Excel program to see more than one workbook =?Utf-8?B?c3RldmVtYWxlZQ==?= Microsoft Excel Misc 3 11th Jun 2007 03:09 PM
How do I print more than one and less than a page of labels =?Utf-8?B?Tm9sYUtlaXRo?= Microsoft Word Document Management 2 5th Apr 2006 04:37 AM
More than 1 Doc = more than 1 Window? Deon H Microsoft Word New Users 3 14th Feb 2005 04:34 PM
paste special, format:=text converts commas in text as a delimiter and puts results in more than one cell all of a sudden phil Microsoft Excel Worksheet Functions 0 15th Sep 2004 08:56 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:14 PM.