Formula That Takes Into Account Position Within a Table

DasMort

New Member
Joined
May 27, 2017
Messages
7
Hi Everyone,

I am trying to create a single formula that I can autofill into a table that will take into account different starting and ending quarters, along with duration. In addition, it need to have a variable rate depending on duration and starting/ending quarter. Is this possible? I have tried nesting IF statements and I have looked through the built in financial functions, but no luck. Image included for clarity.

Thanks guys!
Mort


xe3oJMp.jpg
 

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
That is because Q1 = $15,000 * 0.05 * (0.65 / 2 + 0.15) and Q2 = $15,000 *0.05 * (0.65 / 2 + 0.20)
 
Upvote 0
1234567
principalquartersfee%start qtrend qtrFEE3 or more qtrsstartamnten****tbalamntbalpaymentQ1Q2Q3Q4Q5Q6Q7
1500025%45750no3753750000037537500
2000035%241000yes1502006506500150650200000
10000055%265000yes750100032501083.333307501083.331083.331083.3310000
formula in L3 (0) under Q1 is
=IF(L$1<$D3,0,IF(L$1=$D3,$H3,IF(AND(L$1>$D3,L$1<$E3),$K3,IF(L$1=$E3,$I3,0))))

<colgroup><col><col><col><col span="2"><col><col><col><col><col><col><col span="8"></colgroup><tbody>
</tbody>
 
Upvote 0
all the figures in cols E F,G,H,I,J,K are calculated automatically

oops en****t = endamount
 
Upvote 0
Hi oldbrewer,

Thank you for the reply! It doesn't look like the calculations are correct. For example, where the principal is 100,000, with 5 quarters, the payments should be as follows:

Q2: 1400
Q3: 650
Q4: 650
Q5: 650
Q6: 1,650
Total: 5,000
 
Upvote 0
The first quarter will always be: Principal * 0.05 * (0.65 / # of quarters + 0.15)
The last quarter will always be: Principal * 0.05 * (0.65 / # of quarters + 0.20)
Any middle quarters will always be: Principal * 0.05 * (0.65 / # of quarters)
 
Upvote 0
1234567
principalquartersfee%start qtrend qtrFEE3 or more qtrsstartamnten****tbalamntbalpaymentQ1Q2Q3Q4Q5Q6Q7
1500025%45750no3753750000037537500
2000035%241000yes366.6667416.667216.667216.666670366.6667216.6667416.6667000
10000055%265000yes14001650195065001400650.00650.00650.0016500
formula in L3 (0) under Q1 is
=IF(L$1<$D3,0,IF(L$1=$D3,$H3,IF(AND(L$1>$D3,L$1<$E3),$K3,IF(L$1=$E3,$I3,0))))
USING YOUR FORMULA FOR START AND END AMOUNTS ROW 3 IS CORRECT
BUT IT DOES NOT GIVE AT PRESENT YOUR ANSWER FOR ROW 1

<colgroup><col><col><col><col span="2"><col><col><col><col><col><col><col span="8"></colgroup><tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,214,970
Messages
6,122,514
Members
449,088
Latest member
RandomExceller01

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