Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Tiya
 
Posts: n/a
Default calculation for bank interest chargeable

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
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
 
Posts: n/a
Default calculation for bank interest chargeable

"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 a

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))

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
 
Posts: n/a
Default calculation for bank interest chargeable

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
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Payment calculation w/ back interest Keeb Excel Discussion (Misc queries) 8 February 24th 06 05:27 AM
Conditional reference on average interest calculation PiPPo Excel Worksheet Functions 1 October 21st 05 07:28 PM
calculation of interest between two dates Arvind Khanna via OfficeKB.com Excel Worksheet Functions 2 May 26th 05 10:19 AM
Compound interest calculation Ira Hayes Excel Worksheet Functions 2 January 13th 05 12:20 PM
Compound interest calculation Ira Hayes Excel Discussion (Misc queries) 7 January 13th 05 12:18 PM


All times are GMT +1. The time now is 04:33 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"