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

Try:
=OR(AND(1<G5,G5<2),E5=0,AND(K5-0.1,K5<.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