View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
4pinoy 4pinoy is offline
external usenet poster
 
Posts: 55
Default if any of 3 conditions is true, then answer is true

"3 different columns of data "
I assume that a blank cell means there is no data....E5 must have data
encoded to have a so-so true OR expected result.
Result will always be true even E5,G5 and K5 are blanks if u will not do it
like this one....
=IF(E5="",FALSE,OR(AND(1<G5,G5<2),E5=0,AND(K5-0.1,K5<0.1)))

"inthestands" wrote:

I have three seperate conditions comparing 3 different columns of data that
return a true or false answer. I would like to reduce the three formulas
into 1. If any of the 3 conditions are true, I want my answer to be true.
My feeble attempt is:
=(AND(1<G5,G5<2),OR(IF(E5=0,TRUE,FALSE)),OR(AND(K5 -0.1,K5<.1)),true,false,true))
--
inthestands