Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
rok rok is offline
external usenet poster
 
Posts: 3
Default cells that "contain" values

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,118
Default cells that "contain" values

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
rok rok is offline
external usenet poster
 
Posts: 3
Default cells that "contain" values

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,118
Default cells that "contain" values

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
rok rok is offline
external usenet poster
 
Posts: 3
Default cells that "contain" values

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 6
Default cells that "contain" values

=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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I sum up values only in cells that are color filled? TryingExcel Excel Worksheet Functions 7 April 12th 09 03:34 PM
Counting multiple values within single cells Terry Bennett Excel Worksheet Functions 5 October 24th 06 06:10 PM
cntrl + down arrow and null values in cells Craig Excel Discussion (Misc queries) 2 October 26th 05 10:23 PM
How To Use Cells Without Values in a Formula Roger H. Excel Worksheet Functions 2 April 6th 05 01:01 AM
Help adding text values Texas-DC_271 Excel Worksheet Functions 7 January 15th 05 11:14 PM


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

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"