Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default How do I calculate after making 12 payments of my mortgage

Hi, can anyone tell me which fonction should I use to calculate a loan of
100,000$ with an interest Rate of =5.15% (0.4291) for 25 years (300) and pmt
= -593.36.

Question: after 12 payments How much do I still own the bank? The answers is
$97982.46 by using my calculator but I don't know which fonction do I need to
use in Microsoft Excel .

Could anyone help Me!

Regards

Lutrinh
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 125
Default How do I calculate after making 12 payments of my mortgage

Look at the PMT function, it will explain how to use, to get what you owe the
bank, look into the PV and FV of the function.
--
-John
Please rate when your question is answered to help us and others know what
is helpful.


"Lutrinh" wrote:

Hi, can anyone tell me which fonction should I use to calculate a loan of
100,000$ with an interest Rate of =5.15% (0.4291) for 25 years (300) and pmt
= -593.36.

Question: after 12 payments How much do I still own the bank? The answers is
$97982.46 by using my calculator but I don't know which fonction do I need to
use in Microsoft Excel .

Could anyone help Me!

Regards

Lutrinh

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,651
Default How do I calculate after making 12 payments of my mortgage

On Mon, 18 Dec 2006 17:50:00 -0800, Lutrinh
wrote:

Hi, can anyone tell me which fonction should I use to calculate a loan of
100,000$ with an interest Rate of =5.15% (0.4291) for 25 years (300) and pmt
= -593.36.

Question: after 12 payments How much do I still own the bank? The answers is
$97982.46 by using my calculator but I don't know which fonction do I need to
use in Microsoft Excel .

Could anyone help Me!

Regards

Lutrinh



=Loan+CUMPRINC(Rate/12,Term*12,Loan,1,12,0)



--ron
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 418
Default How do I calculate after making 12 payments of my mortgage

Lutrinh wrote:
Hi, can anyone tell me which fonction should I use to calculate a loan of
100,000$ with an interest Rate of =5.15% (0.4291) for 25 years (300) and pmt
= -593.36.
Question: after 12 payments How much do I still own the bank? The answers is
$97982.46 by using my calculator but I don't know which fonction do I need to
use in Microsoft Excel .


Ostensibly:

=fv(5.15%/12, 12, 593.36, -100000)

But that evaluates to 97982.50 instead of 97982.46. A small
difference; but it might be instructive to understand the reason.

It appears that you might have used the exact payment amount, which in
Excel is computed by:

=pmt(5.15%/12, 300, -100000)

That evaluates to 593.3626 (rounded). Substituting:

=fv(5.15%/12, 12, pmt(5.15%/12, 300, -100000), -100000)

evaluates to 97982.4681 (rounded). I would round that to 97982.47; but
you might have truncated or rounded down to 97982.46.

Since the payment is "real money", I think it is more correct to use
the actual currency amount, namely 593.36 -- or whatever payment amount
the bank chooses arbitrarily.

Caveat: Your estimate might never exactly match a bank's amortization
schedule because there are a number of ways of dealing with "rounding
error" and because some lenders compound interest on a daily basis
between payments. Over 300 months, the difference can be sizable.

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 947
Default How do I calculate after making 12 payments of my mortgage

Question: after 12 payments How much do I still own the bank? The answers
is
$97982.46 by using my calculator..


=CUMPRINC(5.15%/12,300,100000,1,12,0)

Hi. The total principal paid down from months 1 to 12 is the equation
above. Subtract this from your loan to calculate the remaining balance.

--
HTH :)
Dana DeLouis
Windows XP & Office 2003


"Lutrinh" wrote in message
...
Hi, can anyone tell me which fonction should I use to calculate a loan of
100,000$ with an interest Rate of =5.15% (0.4291) for 25 years (300) and
pmt
= -593.36.

Question: after 12 payments How much do I still own the bank? The answers
is
$97982.46 by using my calculator but I don't know which fonction do I need
to
use in Microsoft Excel .

Could anyone help Me!

Regards

Lutrinh





  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default How do I calculate after making 12 payments of my mortgage

John, Ron, Joeu2004 and Dana, Thank you for responding to my question. I try
each and every equation, they all worked perfectly. Thanks especially
joeu2004 for spending your time explaining in detail

" wrote:

Lutrinh wrote:
Hi, can anyone tell me which fonction should I use to calculate a loan of
100,000$ with an interest Rate of =5.15% (0.4291) for 25 years (300) and pmt
= -593.36.
Question: after 12 payments How much do I still own the bank? The answers is
$97982.46 by using my calculator but I don't know which fonction do I need to
use in Microsoft Excel .


Ostensibly:

=fv(5.15%/12, 12, 593.36, -100000)

But that evaluates to 97982.50 instead of 97982.46. A small
difference; but it might be instructive to understand the reason.

It appears that you might have used the exact payment amount, which in
Excel is computed by:

=pmt(5.15%/12, 300, -100000)

That evaluates to 593.3626 (rounded). Substituting:

=fv(5.15%/12, 12, pmt(5.15%/12, 300, -100000), -100000)

evaluates to 97982.4681 (rounded). I would round that to 97982.47; but
you might have truncated or rounded down to 97982.46.

Since the payment is "real money", I think it is more correct to use
the actual currency amount, namely 593.36 -- or whatever payment amount
the bank chooses arbitrarily.

Caveat: Your estimate might never exactly match a bank's amortization
schedule because there are a number of ways of dealing with "rounding
error" and because some lenders compound interest on a daily basis
between payments. Over 300 months, the difference can be sizable.


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
How do I calculate loan balances when payments are missed? Barnacle Bill Excel Worksheet Functions 2 May 8th 06 06:30 PM
30-yr Amortization allowing 26 payments per year/780 lines vs 360 vbpatton Excel Worksheet Functions 1 May 6th 06 02:43 PM
calculate the value of a mortgage purchased at a discount Jim@cch Excel Worksheet Functions 1 June 2nd 05 03:24 AM
Calculate correct interest on loan when debtor pays late O&D Excel Discussion (Misc queries) 0 May 3rd 05 05:10 PM
Making Excel Calculate In Correct Order Carl Bowman Excel Discussion (Misc queries) 1 February 15th 05 03:23 AM


All times are GMT +1. The time now is 10:45 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"