Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
hi guys
does anyone know of a formula or any other way to find if a cell contains a certain value. I am looking for something like an IF statement that will evaluate the following: cell value: "the cow jumped over the moon" equation: find all cells that contain the word "cow" I know this is a simple example but hopefully it explains what i am looking for thanks |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
What do you want to happen once you find them?
Select those cells? Count them? List their addresses? Sum other cells, contingent upon the matched cells? *********** Regards, Ron XL2002, WinXP "rok" wrote: hi guys does anyone know of a formula or any other way to find if a cell contains a certain value. I am looking for something like an IF statement that will evaluate the following: cell value: "the cow jumped over the moon" equation: find all cells that contain the word "cow" I know this is a simple example but hopefully it explains what i am looking for thanks |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
well i hadn't thought of that but i usually use if statements to find certain
cell(s) and then copy it to another cell(s). other times i use them as the basis for further equations, ie if the outcome is true then use a certain equation and if the outcome is false, ignore that cell "Ron Coderre" wrote: What do you want to happen once you find them? Select those cells? Count them? List their addresses? Sum other cells, contingent upon the matched cells? *********** Regards, Ron XL2002, WinXP "rok" wrote: hi guys does anyone know of a formula or any other way to find if a cell contains a certain value. I am looking for something like an IF statement that will evaluate the following: cell value: "the cow jumped over the moon" equation: find all cells that contain the word "cow" I know this is a simple example but hopefully it explains what i am looking for thanks |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try something like this:
With A1: (a value that may contain the word "cow") Then B1: =IF(COUNTIF(A1,"*COW*"),formula if TRUE, formula if FALSE) Is that something you can work with? *********** Regards, Ron XL2002, WinXP "rok" wrote: well i hadn't thought of that but i usually use if statements to find certain cell(s) and then copy it to another cell(s). other times i use them as the basis for further equations, ie if the outcome is true then use a certain equation and if the outcome is false, ignore that cell "Ron Coderre" wrote: What do you want to happen once you find them? Select those cells? Count them? List their addresses? Sum other cells, contingent upon the matched cells? *********** Regards, Ron XL2002, WinXP "rok" wrote: hi guys does anyone know of a formula or any other way to find if a cell contains a certain value. I am looking for something like an IF statement that will evaluate the following: cell value: "the cow jumped over the moon" equation: find all cells that contain the word "cow" I know this is a simple example but hopefully it explains what i am looking for thanks |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
yeah that is perfect, thanks
"Ron Coderre" wrote: Try something like this: With A1: (a value that may contain the word "cow") Then B1: =IF(COUNTIF(A1,"*COW*"),formula if TRUE, formula if FALSE) Is that something you can work with? *********** Regards, Ron XL2002, WinXP "rok" wrote: well i hadn't thought of that but i usually use if statements to find certain cell(s) and then copy it to another cell(s). other times i use them as the basis for further equations, ie if the outcome is true then use a certain equation and if the outcome is false, ignore that cell "Ron Coderre" wrote: What do you want to happen once you find them? Select those cells? Count them? List their addresses? Sum other cells, contingent upon the matched cells? *********** Regards, Ron XL2002, WinXP "rok" wrote: hi guys does anyone know of a formula or any other way to find if a cell contains a certain value. I am looking for something like an IF statement that will evaluate the following: cell value: "the cow jumped over the moon" equation: find all cells that contain the word "cow" I know this is a simple example but hopefully it explains what i am looking for thanks |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=ISNUMBER(FIND("cow",A1))
rok wrote: yeah that is perfect, thanks "Ron Coderre" wrote: Try something like this: With A1: (a value that may contain the word "cow") Then B1: =IF(COUNTIF(A1,"*COW*"),formula if TRUE, formula if FALSE) Is that something you can work with? *********** Regards, Ron XL2002, WinXP "rok" wrote: well i hadn't thought of that but i usually use if statements to find certain cell(s) and then copy it to another cell(s). other times i use them as the basis for further equations, ie if the outcome is true then use a certain equation and if the outcome is false, ignore that cell "Ron Coderre" wrote: What do you want to happen once you find them? Select those cells? Count them? List their addresses? Sum other cells, contingent upon the matched cells? *********** Regards, Ron XL2002, WinXP "rok" wrote: hi guys does anyone know of a formula or any other way to find if a cell contains a certain value. I am looking for something like an IF statement that will evaluate the following: cell value: "the cow jumped over the moon" equation: find all cells that contain the word "cow" I know this is a simple example but hopefully it explains what i am looking for thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I sum up values only in cells that are color filled? | Excel Worksheet Functions | |||
Counting multiple values within single cells | Excel Worksheet Functions | |||
cntrl + down arrow and null values in cells | Excel Discussion (Misc queries) | |||
How To Use Cells Without Values in a Formula | Excel Worksheet Functions | |||
Help adding text values | Excel Worksheet Functions |