Calculating tiered payout with cumulative numbers

kshankar88

New Member
Joined
Jan 10, 2016
Messages
7
Hello,
I took a look at the tiered payout problems posted but I could not apply same solution as my problems differs as below:
[TABLE="width: 141"]
<tbody>[TR]
[TD="width: 107, align: center"]Annual New client (no: of clients)[/TD]
[TD="width: 81, align: center"]Payout in $ per client[/TD]
[/TR]
[TR]
[TD="align: center"]0-40[/TD]
[TD="align: center"]50[/TD]
[/TR]
[TR]
[TD="align: center"]41-60[/TD]
[TD="align: center"]100[/TD]
[/TR]
[TR]
[TD="align: center"]61-90[/TD]
[TD="align: center"]200[/TD]
[/TR]
[TR]
[TD="align: center"]91+[/TD]
[TD="align: center"]250[/TD]
[/TR]
</tbody>[/TABLE]


In my problem, I have something called marginal pay in cumulative fashion, like how incentive/bounty gets paid. For e.g., I have the first 40 clients paid $50 each, the next 20 paid $100 each and the next 30 are paid $200 each, etc. so, when I have 90 new clients, the payout is $10,000 (NOT $18,000).


I tried to calculate the payout at each tier and different payout, but did not go right with sumproduct logic. Could you pl help what could be solution suggested?

Thanks,
Shankar
 

Excel 2010
ABCDEFGH
1NameJanFebMarAprTiered Commission
2Client124351429
3Monthly Payout1,200.002,700.002,700.006,400.00
4
5UnitsAmountNumber of clientsPayoutr_Delta
6Total10213,000.0005050
74010050
860200100
99025050
1aa


B3 =SUMPRODUCT(--(SUM($A$2:B2)>r_Tiers),SUM($A$2:B2)-r_Tiers,r_Delta)-SUM($A$3:A3)
C6 =SUMPRODUCT(--(B6>r_Tiers),B6-r_Tiers,r_Delta)
G6 =F6-N(F5)
 
Last edited:
Upvote 0
SUM($A$2:B2)

Will sum the text in A2 and B2 which will evaluate as 0 + value in B2

SUM($A$3:A3) at the end of the formula sums the cells to the left.
The cell A3 has text;consequently, this part of the formula correctly subtracts 0 when the formula is in B3.

This structure lets one copy the same formula across to calculate the result for each column.

Thank you very much Dave and shg. It was very useful.
 
Upvote 0

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top