Forum Discussion
LisaMarie1981
Apr 28, 2022Brass Contributor
Multiply formula with multiple criteria
I need a formula that allows me to calculate commission based off of several scenarios. If they have less than 3 deals (let's say in cell A1 to make simple) than I need to multiply their revenue (in ...
- Apr 28, 2022
=A2*IF(A1<=3, 0.75, LOOKUP(A2, {0, 75000, 100000}, {0.80, 0.85, 0.90}))
HansVogelaar
Apr 28, 2022MVP
=A2*IF(A1<=3, 0.75, LOOKUP(A2, {0, 75000, 100000}, {0.80, 0.85, 0.90}))
- LisaMarie1981May 04, 2022Brass Contributor
HansVogelaar How would you adjust this if you wanted to grab the data/numbers in bold from actual cells instead so that if we ever had to change the percentages or numbers it would automatically update? Like a plug and play scenario I guess. Is that possible?
=A2*IF(A1<=3, 0.75, LOOKUP(A2, {0, 75000, 100000}, {0.80, 0.85, 0.90}))
- HansVogelaarMay 04, 2022MVP
See the attached sample workbook. I used two cells for the 3 and 0.75, and a table for the other values.
You can edit the values, and if necessary expand the table. The formula will take the changes into account.
- LisaMarie1981May 04, 2022Brass ContributorThis is fantastic! Thank you so much!
- LisaMarie1981Apr 28, 2022Brass Contributor
AMAZING!!! Thank you so much! That was driving me crazy!