IF and OR Combo

  • Thread starter Thread starter carl
  • Start date Start date
C

carl

I would like to write a formula that will:

If A3=O OR A4>25 then A1+A2 otherwise do nothing.

Thank you in advance.
 
Do you mean a zero?

=IF(OR(A3=0,A4>25),A1+A2,"")

Or if you really mean the letter "O":

=IF(OR(A3="O",A4>25),A1+A2,"")

HTH
Jason
Atlanta, GA
 
Back
Top