Formula

  • Thread starter Thread starter John P
  • Start date Start date
J

John P

=IF(R20>=C20,((R20-C8)*Growth)-(H20+K20+N20+Q20),0)

I have this formula that runs well but I would like it to show zero IF the
result is negative?

Can anyone help please???

Thanks


John P
North Yorkshire UK
 
If I understand the question, I think you need:

=IF(((O20-C8)*Growth)-(H20+K20+L20+M20)<0,0,IF(O20>=C20,((O20-C8)*Growth)-(H
20+K20+L20+M20),0))
 
John P,

=IF(AND(R20>=C20,((R20-C8)*Growth)>=(H20+K20+N20+Q20)),((R20-C8)*Growth)-(H2
0+K20+N20+Q20),0)

Rob
 
one way:

=IF(R20>=C20,MAX((R20-C8)*Growth-(H20+K20+N20+Q20),0),0)

or, slightly shorter:

=MAX((R20-C8)*Growth-(H20+K20+N20+Q20),0)*(R20>=C20)
 
Back
Top