PC Review


Reply
Thread Tools Rate Thread

calculation for bank interest chargeable

 
 
=?Utf-8?B?VGl5YQ==?=
Guest
Posts: n/a
 
      1st Mar 2006
Hi to all
Required calculation for bank interest chargeable on working capital loan
based on outstanding on daily basis.
For example:
Day 1.Deposits 10,000:withdrawls 15000 ;closing balance -5000.
Day 2.Deposits 35000:Withdrawls 20000 :closing balance 10000
Day 3.Deposits 11000:withdrawls 55000 :closing balance -34000

Assuming sancioned loan is 100000,Rate of interest is 12% per annum.Interest
is payable on amount in debit.

Thnak you

Regards

tiya
 
Reply With Quote
 
 
 
 
=?Utf-8?B?am9ldTIwMDRAaG90bWFpbC5jb20=?=
Guest
Posts: n/a
 
      1st Mar 2006
"Tiya" wrote:
> Required calculation for bank interest chargeable on
> working capital loan based on outstanding on daily basis.
> For example:
> Day 1.Deposits 10,000:withdrawls 15000 ;closing balance -5000.
> Day 2.Deposits 35000:Withdrawls 20000 :closing balance 10000
> Day 3.Deposits 11000:withdrawls 55000 :closing balance -34000
> Assuming sancioned loan is 100000,Rate of interest is 12%
> per annum.Interest is payable on amount in debit.


Your lender should be able to answer this question for you.

As I understand a commercial line of credit, your deposits
go to pay off any interest first. So in the above example,
on Day 2, your outstanding interest is 1.64 (5000*12%/365),
and your closing balance would be 9999.36 (10000 - 1.64).
In general, your outstanding interest and new balance are:

interest: =if(prevBalance>=0, 0, -prevBalance*12%/365)
balance: =prevBalance - interest + deposits - withdrawals

If deposits are not made on consecutive days, the accumulated
interest is:

=if(prevBalance>=0, 0,
fv(12%/365, lastDepositDate - today(),, prevBalance) + prevBalance))

 
Reply With Quote
 
=?Utf-8?B?am9ldTIwMDRAaG90bWFpbC5jb20=?=
Guest
Posts: n/a
 
      1st Mar 2006
Addendum ....

I wrote wrote:
> "Tiya" wrote:
> > Day 2.Deposits 35000:Withdrawls 20000 :closing balance 10000

> [....]
> on Day 2, your outstanding interest is 1.64 (5000*12%/365),
> and your closing balance would be 9999.36 (10000 - 1.64).


Of course, you could deposit 35001.64 instead. But that is not
always as easy as it sounds.
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Bank interest April Microsoft Excel Misc 1 24th Oct 2006 01:12 AM
bank cal for interest on cd Frank Malone Microsoft Excel Worksheet Functions 12 11th Jun 2006 10:27 PM
Mtge calculation (Dly compound interest and multiple interest rate =?Utf-8?B?U3B1ZHNvbg==?= Microsoft Excel Programming 2 3rd Nov 2005 07:49 PM
Calculating bank interest of a deposit. AFB Microsoft Excel Worksheet Functions 5 17th Oct 2003 10:47 AM
Calculate bank interest AFB Microsoft Excel Worksheet Functions 2 16th Oct 2003 04:03 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 10:58 AM.