Thread: Boolean Math
View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
FrankWood FrankWood is offline
external usenet poster
 
Posts: 21
Default Boolean Math

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