Forum Discussion
Marobeast678
Dec 11, 2022Copper Contributor
Having trouble calculating commission which commissions portions of a sale differently
Hey, Trying I am having trouble calculating commission which commissions portions of a sale differently. For example, if you have a sale that is 9000 USD. The first 3500 gives a commission of 4%,...
HansVogelaar
Dec 11, 2022MVP
Create a small lookup list as in the screenshot:
Column I shows the increment from each tier to the next.
With a sales amount in A2, the commission is
=SUMPRODUCT((A2>$G$2:$G$4)*(A2-$G$2:$G$4),$I$2:$I$4)
- Marobeast678Dec 11, 2022Copper Contributor
HansVogelaar Thanks for the help man, I tried it, it worked very nicely.