#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 12
Default Calculating a loan


Hi,

How do I write a formula which enable me to compare different loans?
I will need to be able to type in the term, amount, interest rate
ect. I would like Excel to calculate the repayments based on the
input of the above criteria in other cells. I would also then like
the total repaid and the total interest displayed.

hope someone can help,

cheers

Matt

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4,393
Default Calculating a loan

Use Help to lean about the PMT function then return for more help
best wishes

--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"Guerilla" wrote in message
ups.com...

Hi,

How do I write a formula which enable me to compare different loans?
I will need to be able to type in the term, amount, interest rate
ect. I would like Excel to calculate the repayments based on the
input of the above criteria in other cells. I would also then like
the total repaid and the total interest displayed.

hope someone can help,

cheers

Matt



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,290
Default Calculating a loan

To just get the results, the free Excel add-in "Calculate Payments" can
be downloaded here... http://www.realezsites.com/bus/primitivesoftware
No registration required.
--
Jim Cone
San Francisco, USA


"Guerilla"
wrote in message
Hi,
How do I write a formula which enable me to compare different loans?
I will need to be able to type in the term, amount, interest rate
ect. I would like Excel to calculate the repayments based on the
input of the above criteria in other cells. I would also then like
the total repaid and the total interest displayed.
hope someone can help,
cheers
Matt

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,059
Default Calculating a loan

On Jan 31, 10:15 am, "Guerilla" wrote:
How do I write a formula which enable me to compare different loans?
I will need to be able to type in the term, amount, interest rate
ect. I would like Excel to calculate the repayments based on the
input of the above criteria in other cells. I would also then like
the total repaid and the total interest displayed.


To some extent, the answer depends on the jurisdiction. For example,
Canadian loans calculations are somewhat different. For a US loan....

If A1 is the term in years, A2 is the annual rate, and A3 is the loan
amount, the monthly payment can be computed by (in A4, say):

=pmt(A2/12, A1*12, -A3)

That value should be rounded at least to cents (for US). But the
degree of rounding or truncation is arbitrary, depending on the
lender.

Once you determine the __rounded__ payment amount, usually the final
payment is different from the others. You should recompute the number
of periods (in A5) and the final payment (assuming a full-term loan)
as follows:

=roundup(nper(A2/12, A4, -A3), 0)

=fv(A2/12, A5-1, A4, -A3)*(1 + A2/12)

Again, the FV() should be round at least to cents (for US). It is
prudent to compute NPER() because if you round up the payment "too
much", you might reduce the term of the loan. But normally that does
not happen.

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 418
Default Calculating a loan

PS.... I see that I failed to answer all of your questions. And I have been
having trouble posting a follow-up response.

On Jan 31, 10:43 am, I wrote:
For a US loan....
If A1 is the term in years, A2 is the annual rate, and A3 is the loan
amount, the monthly payment can be computed by (in A4, say):
=pmt(A2/12, A1*12, -A3)
[....]
Once you determine the __rounded__ payment amount, usually the final
payment is different from the others. You should recompute the number
of periods (in A5) and the final payment (assuming a full-term loan)
as follows:
=roundup(nper(A2/12, A4, -A3), 0)
=fv(A2/12, A5-1, A4, -A3)*(1 + A2/12)


On Jan 31, 10:15 am, "Guerilla" wrote:
I would also then like
the total repaid and the total interest displayed.


Suppose the final payment is in A6. Then the total repaid is (in A7):

=A4*(A5-1) + A6

The total interest is:

=A7 - A3

By the way, in comparing some loans (especially mortgages), you might also
need to take other things into account, such as points and prepaid interest
(for the initial odd period).

Ostensibly the APR is intended to be used to compare loans and avoid all of
this computation. But as you may know already, it is really a poor
comparator if you rely on the institution to specify the APR because there is
some latitude in what each institution chooses to include in their APR
computation :-(.

That said, if you are still interested in how to compute the APR, that is a
different question altogether; and to answer that again, we would need to
know the kind of loan (mortgage or not). Post again if you are interested.
But frankly, I think you were wise not to ask about it in the first place :-).
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
Loan Schedule with Balloon Payment R0bert Neville Excel Worksheet Functions 7 April 22nd 23 12:08 PM
APR (Annual Percentage Rate) calculator jeton Excel Discussion (Misc queries) 3 October 13th 06 04:38 AM
Financial Loan calc including monthly fees rktect Excel Discussion (Misc queries) 6 July 26th 06 08:15 AM
calculating excel spreadsheet files for pensions and life insurance (including age calculation sheets) RICHARD Excel Worksheet Functions 1 March 15th 05 05:49 PM
AGE CALCULATING EXCEL SPREADSHEETS AND OTHERS! RICHARD Excel Discussion (Misc queries) 0 March 1st 05 01:53 PM


All times are GMT +1. The time now is 02:06 PM.

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"