Formulas

Copper Contributor

I would like to write a formula where a product sums to a negative number it defaults to 0. Such as -11x5=0

2 Replies

Hi

 

=IFERROR(EXP(LN(-11*5)),0)

 

Assuming you are multiplying the numbers in A1 and B1, your formula for the product in C1 is:
=MAX(A1*B1,0)