Interest on increasing capital amount, not compounded

Bizzybee

New Member
Joined
Feb 22, 2017
Messages
10
I am hoping someone can help. I have spent all afternoon trying to figure this one out, to no avail.

Basically, I have a principal amount which stays the same and recurrs daily, say £10 (see table below).

I want to add interest on that at 8% simple annual interest from the date it is incurred to a specified end date.

I then want to do the same for the next £10 that are incurred on the next day.

The end date is always the same. So each day a principal amount is incurred, but it has one day less interest on it that the amount the day before.

I would like a formula which will work it all out in one or two (or three) steps. The data I have covers many years and I have baout 3,000 sets to work out. So I can't be doing it all individually as below.

Can anyone help?

PrincipalStart DateEnd DateAnnual Simple
interest rate
Daily interestNo of daysInterest total
£101 Jan 201531 Dec 20158%0.002191781364
0.797808219

<tbody>
</tbody>
£102 Jan 201531 Dec 20158%0.002191781363
0.795616438

<tbody>
</tbody>
£103Jan 201531 Dec 20158%0.002191781362
0.793424658

<tbody>
</tbody>
£104 Jan 201531 Dec 20158%0.002191781361
0.791232877

<tbody>
</tbody>
£105 Jan 201531 Dec 20158%0.002191781360
0.789041096

<tbody>
</tbody>

<tbody>
</tbody>
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
What should the formula be calculating? The interest total for each row?

If that is the case, then assuming data starts in A2, this will calculate the total interest for each row:

=((D2/365)*A2)*F2
 
Last edited:
Upvote 0
I would like to know the total interest, i.e. the sum of of the 7th column

You cant to add all the totals together? Where are you putting the sum? Can you provide a small sample of the expected result?
 
Upvote 0
Sorry, I wasn't clear. I need one formula that will calculate the entire interest for a period in which the principal amount increases daily by the same amount.
 
Upvote 0
Data:
Start Date
End Date
Principal amount which accrues every day
Interest rate

Output:
Interest accrued in period
 
Upvote 0
To give you some context:

Someone borrows £10 off me every day for 1 year. I charge simple interest (8% per annum in other words 8%/365 per day) on that £10. At the end of the year, I want to know how much interest the debtor needs to pay me in addition to the principal (which is 365 * £10 = £3650)
 
Upvote 0
So far I have got to this in my thinking:

P = principal
i = P * 0.08/365
d = 365 (being the difference between the start and end date)
T = total interest for period

T = (P*i*d) + (2P*i *(d-1)) + (3P*i*(d-2)) + ((4P*i*(d-3)) etc

I can't type that out for data that spans 10 years! How can I make that into a shorter formula?
 
Upvote 0
Assuming my algebra is correct, your equation resolves to:

ABCD
1Principal100.076712
2Interest8%0.076712
3Daily Interest0.000219
4Days5

<colgroup><col style="width: 25pxpx"><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet19

Worksheet Formulas
CellFormula
D1=B1*B3*5+2*B1*B3*4+3*B1*B3*3+4*B1*B3*2+5*B1*B3*1
D2=B1*B3*COMBIN(B4+2,3)
B3=B2/365

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0
Try this:

=SUMPRODUCT(((D2:D6/365)*A2:A6)*F2:F6)

Where:
D2:D6 is the Annual Simple Interest column
A2:A6 is the Principle column
F2:F6 is the No of Days column

And then if you want to get the combined total of Principle and Interest, you can add do this:

=SUM(SUMPRODUCT(((D2:D6/365)*A2:A6)*F2:F6),A2:A6)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,833
Messages
6,121,868
Members
449,053
Latest member
Mesh

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