Forum Discussion
keao46
Oct 07, 2022Copper Contributor
Formula
I am trying to build a formula that will take the product of two values plus the product of two other values minus a maximum amount. If result of that equation is greater than $5000 then I want the v...
- Oct 07, 2022
What do you mean by "minus a maximum amount"?
To limit the result to a maximum of 5000, use
=MIN(value1*value2+value3*value4, 5000)
HansVogelaar
Oct 07, 2022MVP
What do you mean by "minus a maximum amount"?
To limit the result to a maximum of 5000, use
=MIN(value1*value2+value3*value4, 5000)
keao46
Oct 07, 2022Copper Contributor
That was easy. Thank you