Forum Discussion
CDmention1
Jan 31, 2019Copper Contributor
Formulas
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
Sort By
- TwifooSilver ContributorAssuming you are multiplying the numbers in A1 and B1, your formula for the product in C1 is:
=MAX(A1*B1,0) - Detlef_LewinSilver Contributor
Hi
=IFERROR(EXP(LN(-11*5)),0)