multiple or conditions

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have written syntax that doesn't seem to be picking up all my or conditions
thus leaving me with an inaccurate answer. What am I doing wrong?

=IF($I5>2.5,1,0)*OR($K5>2.5,1,0)*OR($M5>2.5,1,0)*OR($O5>2.5,1,0)
*OR($Q5>2.5,1,0)*OR($J5>5,1,0)*OR($L5>5,1,0)*OR($N5>5,1,0)
*OR($P5>5,1,0)*OR($R5>5,1,0)
 
Syntax is =IF(OR(condition1,condition2,condition3,...),value if true,value if
false)
-- that is, only ONE "OR" would be in the formula. Not sure what you're
trying to accomplish here.
 
Back
Top