Tiered Fee

Graemea

Board Regular
Joined
Oct 30, 2015
Messages
116
Office Version
  1. 365
Platform
  1. Windows
Hi,

i would like like to calculate a composite fee rate based on the following sample tiers:

1st $225m charged at 0.50%
Up to $450m charged at 0.45%
Above $$450m charged at 0.40%

So the fee on $1bn would be 0.50% on the first $225m, 0.45% on the next $225m and 0.40% on the remaining $550m.

I need to calculate the effective fee on the $1bn. I would expect it to be around 0.44%.

Can someone please suggest a formula to do this. It’s possible with IF statements but this becomes unwieldy when you introduce more tiers to the fee structure.

thanks!
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Hello, I have done it with an IF statement (as you say it becomes unwieldy) but for now it is OK I suppose? I am sure someone will come up with something more elaborate

IF(A1<=225000000,0.005*A1,IF(A1<=450000000,(0.005*225000000)+0.0045*(A1-225000000),(0.005*225000000)+(0.0045*225000000)+0.004*(A1-450000000)))/A1

Where A1 has the $ amount

If A1 is $1bn, then this formula returns 0.43375% for example
 
Last edited:
Upvote 0
Thanks!

I’ve seen a similar problem solved with SUMPRODUCT.

Does anyone know how to adapt this to my question?

thank you!
 
Upvote 0
Tiered Fee with SUMPRODUCT?

Hi,

Sorry for bumping this up but is anyone please able to suggest a solution that doesn't use lots of nested IF functions as I'd like to extend the number of tiers and the formula becomes very unwieldy?

thanks!
 
Upvote 0
Re: Tiered Fee with SUMPRODUCT?


Excel 2010
ABCDEF
1Amount1,000,000,000BracketsRateRate_Diff
2Fee4,337,500.0000.50%0.50%
30.0043375225,000,0000.45%-0.05%
4450,000,0000.40%-0.05%
1d
Cell Formulas
RangeFormula
F2=E2-N(E1)
B2=SUMPRODUCT(--(B1>D2:D4),B1-D2:D4,F2:F4)
B3=B2/B1
 
Upvote 0

Forum statistics

Threads
1,214,929
Messages
6,122,317
Members
449,081
Latest member
tanurai

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