Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Tristan
 
Posts: n/a
Default Annual Percentage Rate for Mortgage

I am trying to calculate an APR based on a mortgage. The formula that I have
input is as follows:
=RATE(A4,(-(PMT(A2,A4,A1,0,0))),A1+A3,0,0,0)*12
My Data is as follows:
A1 = 150,000.00 (loan amount)
A2 = 5.500 (Interest Rate)
A3 = 3000 (Closing Costs / Fees)
A4 = 360 (Term in months)
As far as I can tell I am entering all of the data in the correct format and
order but continue to receive a #NUM! error. Can anyone tell me what I am
missing or doing wrong. Thanks.
  #2   Report Post  
 
Posts: n/a
Default

Tristan wrote:
I am trying to calculate an APR based on a mortgage.
The formula that I have input is as follows:
=RATE(A4,(-(PMT(A2,A4,A1,0,0))),A1+A3,0,0,0)*12
My Data is as follows:
A1 = 150,000.00 (loan amount)
A2 = 5.500 (Interest Rate)
A3 = 3000 (Closing Costs / Fees)
A4 = 360 (Term in months)
[...] continue to receive a #NUM! error.


You have several errors.

First, it is helpful to "debug" such problems by
breaking down the expression. If you put PMT() in a
separate cell, I'm sure you will see part of the problem.

The first reason for the #NUM! error is because you have
"5.5" instead of "5.5%".

After you correct that, you will still get a #NUM!
error. That is because you should use PMT(), not -PMT().

The sign of the PMT should be opposite of the sign of
the PV in this case. As you have written the PMT()
parameters, PMT() returns a negative value.

(Note: Some people use PMT(...,-A1) so that PMT is a
positive number. In that case, -PMT() would be correct.)

Those are the mechanical errors. Now for the many
logical errors.

First, you should use A2/12, not A2, to compute the
monthly PMT.

Second, you should use A1-A3, not A1+A3. Refer to
http://www.calcbuilder.com/cgi-bin/c.../yahoo_banking
for an example/explanation.

Finally, bear in mind that this will only approximate
the APR. It will probably not equal the lender's APR,
even if the lender computes it the same way you do.

(Note: There is no agreement on how lender's should
compute the APR.)

The reason is that even A2/12 is an estimate of the
monthly interest rate. I believe the monthly rate is
RATE(12,0,1,-(1+A2)). The good news is: that is less
than A2/12. So if you use A2/12, you will have a more
conservative estimate (i.e, too high).

(Note: Be sure to format all interest rate cells with
at least Percentage 2 normally. But in this case, you
need at least Percentage 3 to see the difference.)

Moreover, I believe that banks now amortize on a daily
basis, even though the payments are monthly.

(Double-check that. My memory might be wrong, or it
might vary from lender to lender.)

  #3   Report Post  
 
Posts: n/a
Default

I wrote:
I believe the monthly rate is RATE(12,0,1,-(1+A2))


I wish I had written RATE(12,0,-1,1+A2).

The result is the same. But I think -PV and +FV
are conceptually easier to understand in this case.
Morever, the expression is easier to write the second
way.

  #4   Report Post  
Tristan
 
Posts: n/a
Default

Thanks for the help Joe, Got it working now.

" wrote:

I wrote:
I believe the monthly rate is RATE(12,0,1,-(1+A2))


I wish I had written RATE(12,0,-1,1+A2).

The result is the same. But I think -PV and +FV
are conceptually easier to understand in this case.
Morever, the expression is easier to write the second
way.


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
Annual Percentage Rate sts111 Excel Discussion (Misc queries) 1 February 1st 05 01:26 PM
How do I create a formula to calculate the average percentage rat LD Excel Worksheet Functions 5 January 13th 05 06:17 PM
percentage of sales Kay LJ Excel Worksheet Functions 2 January 11th 05 01:38 AM
APR - Annual Percentage Rate marlia Excel Worksheet Functions 2 December 9th 04 09:05 PM
Rate of return required formula Alorasdad Excel Worksheet Functions 1 November 18th 04 03:14 AM


All times are GMT +1. The time now is 12:23 AM.

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

About Us

"It's about Microsoft Excel"