stumps

New Member
Joined
Jan 26, 2018
Messages
22
Hi everyone, is it possible to get a formula to work out the following :

The data which I capture is the date in column A and amount in column B, I then manually work out the days and interest amount, am not always sure that my calculations are correct :

Is there a formula that can work out the days in column C and Interest Amount in column D

Thanks guys


ABCD
1
DateAmountDaysInterest


2@ 5%
3
15/02/2016​
200,000.0000.00
417/02/2016
95,667.46
254.79
502/03/2016100,000.0013526.63
603/03/2016
130,000.004217.12
715/03/2016200,000.00112,556.32

<tbody>
</tbody>
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
In C4 and drag down :
=A4-A3

In D4 and drag down :
=ROUND(B$3*0.05/365*C4,2)
 
Last edited:
Upvote 0
Apologies, there are numerous entries in-between the Loan date entries, the interest is calculated on the
loan balance plus the interest(accumulates) - so the spreadsheet looks like this :


A

BCDE
1DateDescriptionAmountDaysInterest
2


@ 5%
32016-02-15Loan100,000.0000.00
42016-02-19Build Costs24,500.00




52016-05-22Build Costs12,600.00




62016-07-15Loan200,000.001502,054.79


72016-08-12Build Costs7,459.00




82016-07-15Build Costs5,600.00




92016-10-02Build Costs14,600.00




102016-10-12Loan100,000.00893,682.59






<tbody>
</tbody>
 
Upvote 0
Need to add a column : Enter "Loan Total" in F1

Enter these formulas and drag down :

D4 : =IF(B3="Loan",A4-A3,D3+A4-A3)

E4 : =IF(B4="Loan",(F3+SUM(E$3:E3))*0.05/365*D4,0)

F4 : =IF(B4="Loan",F3+C4,F3)

(Note : In your sample data the first Days number should be 151)
 
Upvote 0
Hey, many thanks for the reply and answer - I will do as you say and check it out - I cannot believe all this, good stuff - thanks once again
 
Upvote 0
I forgot to mention to enter 100,000 in F3
 
Upvote 0
Hey footoo, thanks very much, the sums work out 100% - would you have a formula to insert into column G , it would be great if this column could have a running Total that Includes the Loan Amount and the Interest.


ABCDEF
G​
Date
AmountDaysInterestTotal Excl. Int. Total Incl. Int
12016-02-15Loan100,000.000
0.00100,000.00
22016-02-19Build......... 24,500.0040.00100,000.00
32016-07-15Loan200,000.001512,068.49300,000.00
42016-08-12Build Costs 7,459.00280.00300,000.00
52016-10-12Loan100,000.00893,682.75400,000.00
62016-12-17Build Costs 14,600.00660.00400,000.00
72016-12-30Loan900,000.00794,391.011,300,000.00
82017-01-18Build Costs 28,679.00190.001,300,000.00
92017-05-08Build Costs27,500.001290.001,300,000.00
102017-12-23Loan900,000.0035864,250.812,200,000.00

<tbody>
</tbody>
 
Upvote 0
Many thanks Footoo, checked it out, all working 100% - Would it be possible to have another column with a running Total that Includes the Interest?
Many thanks
 
Upvote 0

Forum statistics

Threads
1,215,184
Messages
6,123,533
Members
449,106
Latest member
techog

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