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

Try this:

=OR(AND(G51,G5<2),E5=0,AND(ABS(K5)<0.1))

Does that help?
***********
Regards,
Ron

XL2002, WinXP


"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