If the sum of (F4*H4) = a negative number I want it to return a zero but I
can't seem to come up with a workable formula. Sugestions?
=IF(ISBLANK(G4),"",SUM(F4*H4))
Toppers - 04 Jun 2007 21:25 GMT
=IF(ISBLANK(G4),"",MAX(0,F4*H4))
> If the sum of (F4*H4) = a negative number I want it to return a zero but I
> can't seem to come up with a workable formula. Sugestions?
>
> =IF(ISBLANK(G4),"",SUM(F4*H4))
JustBreathe - 04 Jun 2007 22:25 GMT
what about =IF((F4*H4)<=0,0,(F4*H4))
> If the sum of (F4*H4) = a negative number I want it to return a zero but I
> can't seem to come up with a workable formula. Sugestions?
>
> =IF(ISBLANK(G4),"",SUM(F4*H4))