Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have three cells with formulas that return a boolean value.
I need a formula in the fourth cell that returns True only if the first three cells are all True. -- Thanks, Art |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=AND(A1,B1,C1)
-- David Biddulph "Art" wrote in message ... I have three cells with formulas that return a boolean value. I need a formula in the fourth cell that returns True only if the first three cells are all True. -- Thanks, Art |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this:
=AND(A1,A2,A3) Hope this helps. Pete On Dec 10, 6:51*pm, Art wrote: I have three cells with formulas that return a boolean value. I need a formula in the fourth cell that returns True only if the first three cells are all True. -- Thanks, Art |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi there.
The following formula returns true only if A1, A2 and A3 are all TRUE: =and(A1,A2,A3) Regards, Otávio "Art" wrote: I have three cells with formulas that return a boolean value. I need a formula in the fourth cell that returns True only if the first three cells are all True. -- Thanks, Art |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Assuming your cells are D5:D8 you could use this:
=IF(COUNTIF(D5:D7,"true")=3,TRUE,FALSE) Hope that helps, Frank "Art" wrote: I have three cells with formulas that return a boolean value. I need a formula in the fourth cell that returns True only if the first three cells are all True. -- Thanks, Art |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You don't need =IF(...,TRUE,FALSE)
Your formula is the same as =COUNTIF(D5:D7,"true")=3 or =COUNTIF(D5:D7,TRUE)=3 but AND is easier. -- David Biddulph "FrankWood" wrote in message ... Assuming your cells are D5:D8 you could use this: =IF(COUNTIF(D5:D7,"true")=3,TRUE,FALSE) Hope that helps, Frank "Art" wrote: I have three cells with formulas that return a boolean value. I need a formula in the fourth cell that returns True only if the first three cells are all True. -- Thanks, Art |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
AND another
=A1*B1*C1=1 "Art" wrote: I have three cells with formulas that return a boolean value. I need a formula in the fourth cell that returns True only if the first three cells are all True. -- Thanks, Art |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
or even
=A1*B1*C1<0 SORRY! "Mike H" wrote in message ... AND another =A1*B1*C1=1 "Art" wrote: I have three cells with formulas that return a boolean value. I need a formula in the fourth cell that returns True only if the first three cells are all True. -- Thanks, Art |
#9
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
This slightly shorter AND method seems to work also (assuming the cells are
contiguous)... =AND(A1:C1) or =AND(A1:A3) -- Rick (MVP - Excel) "Art" wrote in message ... I have three cells with formulas that return a boolean value. I need a formula in the fourth cell that returns True only if the first three cells are all True. -- Thanks, Art |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
IF vs Boolean | Excel Discussion (Misc queries) | |||
More on Boolean | New Users to Excel | |||
Bob P. and Roger G. -- IF(and(...IF(OR( vs. IF(Boolean | Excel Worksheet Functions | |||
VBA Boolean | Excel Discussion (Misc queries) | |||
Boolean Find | Excel Discussion (Misc queries) |