#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 14
Default Find value in range

I need a formula in column D that looks at the row of formulas in A-C and if
one of the formulas returns "TRUE" then I need the formula in col D to return
"CHECK"

Thanks,

Esther

A B C D
1 FALSE TRUE FALSE CHECK
2 FALSE FALSE FALSE OK
3 FALSE TRUE FALSE CHECK
4 FALSE FALSE FALSE OK
5 FALSE FALSE TRUE CHECK

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 31
Default Find value in range

in D1 type:
=IF(OR(A1,B1,C1),"Check","Ok")

"EstherJ" wrote:

I need a formula in column D that looks at the row of formulas in A-C and if
one of the formulas returns "TRUE" then I need the formula in col D to return
"CHECK"

Thanks,

Esther

A B C D
1 FALSE TRUE FALSE CHECK
2 FALSE FALSE FALSE OK
3 FALSE TRUE FALSE CHECK
4 FALSE FALSE FALSE OK
5 FALSE FALSE TRUE CHECK

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,574
Default Find value in range

=IF(COUNTIF(A1:C1,"TRUE")0,"CHECK","OK")

Dave
--
Brevity is the soul of wit.


"EstherJ" wrote:

I need a formula in column D that looks at the row of formulas in A-C and if
one of the formulas returns "TRUE" then I need the formula in col D to return
"CHECK"

Thanks,

Esther

A B C D
1 FALSE TRUE FALSE CHECK
2 FALSE FALSE FALSE OK
3 FALSE TRUE FALSE CHECK
4 FALSE FALSE FALSE OK
5 FALSE FALSE TRUE CHECK

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 31
Default Find value in range

If you didn't use FALSE() / TRUE() function in A-C
=IF(OR(A1="True",B1="True",C1="True"),"Check","Ok" )

"EstherJ" wrote:

I need a formula in column D that looks at the row of formulas in A-C and if
one of the formulas returns "TRUE" then I need the formula in col D to return
"CHECK"

Thanks,

Esther

A B C D
1 FALSE TRUE FALSE CHECK
2 FALSE FALSE FALSE OK
3 FALSE TRUE FALSE CHECK
4 FALSE FALSE FALSE OK
5 FALSE FALSE TRUE CHECK

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
Dynamic Range with unused formula messing up x axis on dynamic graph [email protected] Charts and Charting in Excel 2 February 2nd 06 08:02 PM
Match function...random search? Les Excel Worksheet Functions 10 July 28th 05 11:54 AM
How to Select a relative range with Using "Find" and Offset() Dennis Excel Discussion (Misc queries) 7 July 27th 05 03:57 PM
Find cell contents in range Nigel Excel Discussion (Misc queries) 7 May 16th 05 01:15 PM
I need a formula to find rows within a date range in one column? M. Penney Excel Worksheet Functions 5 May 12th 05 12:32 AM


All times are GMT +1. The time now is 07:48 AM.

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

About Us

"It's about Microsoft Excel"