if statement

mdwheels

New Member
Joined
Jun 16, 2016
Messages
2
I need to calculate based on the below chart but coming up with a negative # (I understand why) but can't figure out how to get an additional if statement to resolve or is there a better way to calculate

Fund Balance$750,000
Up to $499,9992.25%=IF(J27>500000,((500000*K29)/12),(J27*K29/12))937.50
From$500,000$999,9991.97%=IF(J27>999999,((500000*K30)/12),((J27-500000)*K30/12))410.42
From$1,000,000$2,499,9991.69%=IF(J27>2499999,((1499999*K31)/12),((J27-999999)*K31/12))-352.08
Over$2,500,0001.41%=IF(J27<2500000,0,(J27-2500000)*K32)0


<tbody>
</tbody>

<colgroup><col><col span="2"><col><col></colgroup><tbody></tbody>
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Welcome to the Board!

How exactly is it supposed to work?
Is it that 2.25% is applied to the amounts under 500,000, then 1.97% is applied to the amounts between 500,000 and 999,999, then 1.69% is applied to the amounts between 1,000,000 and 2,499,999, and then 1.41% should be applied on any amounts over 250,000, and then you want to sum all those amounts together?

If that is the case, then I think you should have 0 in either the TRUE or FALSE of every IF statement (because if it doesn't meet that particular criteria, I don't think you want to apply any amount to it).
 
Upvote 0
so it is a tiered fee schedule - the first $500K at highest rate and the second $500K at the next rate etc. If the amount is greater in any of the ranges - it would have the max fee for that amount
 
Upvote 0
If my prior assumptions are correct, then putting the high/low values in columns I and J, here are the four formulas I come up with (in order):

=MIN(I29,$J$27)*K29/12
=MAX(MIN(J30,$J$27)-I30,0)*K30/12
=MAX(MIN(J31,$J$27)-I31,0)*K31/12
=MAX($J$27-I32,0)*K32/12
 
Upvote 0
so
it is a tiered fee schedule - the first $500K at highest rate and the second $500K at the next rate etc. If the amount is greater in any of the ranges - it would have the max fee for that amount
So, walk me through the example you posted initially.
What total amount do you expect/want?

The formulas I provided above would return 1347.92 (from 937.50 + 410.42 + 0 + 0).

Note that you may want to round each formula to two decimal places, i.e.
=ROUND(MIN(I29,$J$27)*K29/12,2)
etc.
 
Last edited:
Upvote 0
If you could write a max amount (like 999.999.999) in J31, and make I28 to be 0 and J28 to be 499999 (simply using lower and upper limits) then I think following formula could work:

Cell N28:

<i28,0,1)*if(j$27<j28,(j$27-i28)*k28,(j28-i28)*k28) 12
Code:
=IF(J$27<I28,0,1)*IF(J$27<J28,(J$27-I28)*K28,(J28-I28)*K28)/12
<i28,0,1)*if(j$27<j28,(j$27-i28)*k28,(j28-i28)*k28) 12

Copy and paste into N28:N31.

Edit: LOL! It has been almost solved while I was trying to figure it out :) I am really not a formula pro!</i28,0,1)*if(j$27<j28,(j$27-i28)*k28,(j28-i28)*k28)></i28,0,1)*if(j$27<j28,(j$27-i28)*k28,(j28-i28)*k28)>
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,692
Members
448,979
Latest member
DET4492

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