Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Im trying to use the below but not getting much joy.
=IF(AND(CW11=1,OR(SEARCH({"PRO","NOP","VAL"},$B11) ))),7,9) I would like to implement the condition that if CW =1 and B11 contains either PRO , NOP or VAL it returns the value 7. Can anyone help Thanks JAmie |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try:
=IF(AND(A11=1,OR(ISNUMBER(SEARCH({"PRO","NOP","VAL "},$B11)))),7,9) P.S. SEARCH() just get the number not the logic result -- Regards, Sebation.G roups.com... Im trying to use the below but not getting much joy. =IF(AND(CW11=1,OR(SEARCH({"PRO","NOP","VAL"},$B11) ))),7,9) I would like to implement the condition that if CW =1 and B11 contains either PRO , NOP or VAL it returns the value 7. Can anyone help Thanks JAmie |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You didn't say what you wanted if this evaluated as false so the formula
shows Unspecified:- =IF(AND(CW11=1,AND(OR(B11="NOP",B11="PRO",B11="VAL "))),7,"Unspecified") Mike " wrote: Im trying to use the below but not getting much joy. =IF(AND(CW11=1,OR(SEARCH({"PRO","NOP","VAL"},$B11) ))),7,9) I would like to implement the condition that if CW =1 and B11 contains either PRO , NOP or VAL it returns the value 7. Can anyone help Thanks JAmie |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Change to suit
=IF(AND(E3=1,SUMPRODUCT(--(ISNUMBER(SEARCH({"e*","f*","g"},$F$7))))),"Ok","N O") -- Don Guillett SalesAid Software wrote in message ups.com... Im trying to use the below but not getting much joy. =IF(AND(CW11=1,OR(SEARCH({"PRO","NOP","VAL"},$B11) ))),7,9) I would like to implement the condition that if CW =1 and B11 contains either PRO , NOP or VAL it returns the value 7. Can anyone help Thanks JAmie |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
If you want B11 to be an exact match for either PRO, NOP or VAL, then"
=IF(AND(C11=1,ISNUMBER(MATCH(B11,{"PRO","NOP","VAL "},0))),7,9) Using SEARCH will return true B11 is "VALLEY". However, using MATCH will return only if it is exact (non-case sensitive). HTH, Paul wrote in message ups.com... Im trying to use the below but not getting much joy. =IF(AND(CW11=1,OR(SEARCH({"PRO","NOP","VAL"},$B11) ))),7,9) I would like to implement the condition that if CW =1 and B11 contains either PRO , NOP or VAL it returns the value 7. Can anyone help Thanks JAmie |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On May 15, 4:33 pm, wrote:
Im trying to use the below but not getting much joy. =IF(AND(CW11=1,OR(SEARCH({"PRO","NOP","VAL"},$B11) ))),7,9) I would like to implement the condition that if CW =1 and B11 contains either PRO , NOP or VAL it returns the value 7. Can anyone help Thanks JAmie Dears use this formula +IF(AND(CW11=1,SEARCH("PRO",B11)),7,9) I hope it's what you want BR Tariq |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On May 15, 4:33 pm, wrote:
Im trying to use the below but not getting much joy. =IF(AND(CW11=1,OR(SEARCH({"PRO","NOP","VAL"},$B11) ))),7,9) I would like to implement the condition that if CW =1 and B11 contains either PRO , NOP or VAL it returns the value 7. Can anyone help Thanks JAmie Sorry for the first mail it's error I will check and reply to you BR Tariq |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Seo , Search Engine Optimizer , Seo Search engine Optimization , search engine optimization services, SEO Consulting | Excel Worksheet Functions | |||
Seo , Search Engine Optimizer , Seo Search engine Optimization , search engine optimization services, SEO Consulting | Setting up and Configuration of Excel | |||
Seo , Search Engine Optimizer , Seo Search engine Optimization , search engine optimization services, SEO Consulting | Links and Linking in Excel | |||
Seo , Search Engine Optimizer , Seo Search engine Optimization , search engine optimization services, SEO Consulting | Charts and Charting in Excel | |||
How do I search excel spreadsheets using multiple search criteria. | Excel Worksheet Functions |