Blended Fee Calculator

pbolli1

New Member
Joined
Aug 2, 2016
Messages
7
Hi Im trying to build a calculator that calculates a blended fee based on the constraints below. For example, if X client has $10 million to invest - his fee would be:?
Investable Assets $ 10,000,000.00
Blended Fee
FromToRate
05000001.00%
50000110000000.90%
100000130000000.75%
300000150000000.65%
5000001100000000.50%
10000001200000000.40%
20000001300000000.30%

<colgroup><col><col><col></colgroup><tbody>
</tbody>

<tbody>
</tbody>
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Looks like just a VLOOKUP:


Book1
ABCDEF
1Amount to InvestRateFromToRate
2$ 3,456,789.000.65%$ -$ 500,000.001.00%
3$ 500,001.00$ 1,000,000.000.90%
4$ 1,000,001.00$ 3,000,000.000.75%
5$ 3,000,001.00$ 5,000,000.000.65%
6$ 5,000,001.00$ 10,000,000.000.50%
7$ 10,000,001.00$ 20,000,000.000.40%
8$ 20,000,001.00$ 30,000,000.000.30%
Sheet7
Cell Formulas
RangeFormula
B2=VLOOKUP(A2,D2:F8,3)
 
Upvote 0
Hi Eric, thanks for the reply! I forgot to mention that the fee should be a blended rate. For example: for a 10 million dollar investment, the first $500k would be charged 1% the second 500k would be charged .9% and so on. So the blended rate for $10 million should come out to about .59%. Any help would be greatly appreciated.
 
Upvote 0
OK, try this:


Book1
ABCDEFG
1Amount to InvestFeeFromToRateDifferential Rate
2$ 10,000,000.00$ 62,500.00$ -$ 500,000.001.00%1.00%
3$ 500,000.00$ 1,000,000.000.90%-0.10%
4Blended Rate$ 1,000,000.00$ 3,000,000.000.75%-0.15%
50.625%$ 3,000,000.00$ 5,000,000.000.65%-0.10%
6$ 5,000,000.00$ 10,000,000.000.50%-0.15%
7$ 10,000,000.00$ 20,000,000.000.40%-0.10%
8$ 20,000,000.00$ 30,000,000.000.30%-0.10%
Sheet7
Cell Formulas
RangeFormula
B2=SUMPRODUCT((A2-D2:D8),--(A2>D2:D8),G2:G8)
B5=B2/A2
G2=F2-N(F1)


You need to add the Differential Rate column to your table. Put the G2 formula in and drag down to G8. I also changed the D column to be the exact amount of the tier, not 1 dollar over, since the B2 formula expects it that way. Then the B2 formula figures out the fee, and the B5 formula gives the "blended" rate. Hope this helps!
 
Upvote 0
Hi Eric,

I think were almost there! I am just getting an error on the B2 Formula =SUMPRODUCT((A2-D2:D8),--(A2>D2:D8),G2:G8)

This is exactly what I have input.
 
Upvote 0
What error are you getting? If that's the exact formula, then what do you have in the table? Are all the values numeric? Do the columns and ranges all match up to the sample sheet? Is A2 numeric? Are you dragging the formula down, if so you need to add the absolute reference indicators:

=SUMPRODUCT((A2-$D$2:$D$8),--(A2>$D$2:$D$8),$G$2:$G$8)
 
Upvote 0
try

Excel 2010
ABCDEFG
1Amount to InvestFeeBracketsRateDifferential Rate
2$10,000,000.00$62,500.000.001.00%1.00%
3500,000.000.90%-0.10%
4Blended Rate1,000,000.000.75%-0.15%
50.63%3,000,000.000.65%-0.10%
65,000,000.000.50%-0.15%
710,000,000.000.40%-0.10%
820,000,000.000.30%-0.10%
3a
Cell Formulas
RangeFormula
B2=SUMPRODUCT(--(A2>$D$2:$D$8),A2-$D$2:$D$8,$G$2:$G$8)
B5=B2/A2
 
Upvote 0

Forum statistics

Threads
1,214,920
Messages
6,122,279
Members
449,075
Latest member
staticfluids

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