Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
Marc
 
Posts: n/a
Default What am I doing wrong with PMT function?

I have searched the net and formated the function like all the examples but
the payment is way out of line.

In cell L57 I have the annual interest rate, in M57 the numbers of years for
the loan and K57 is the principal.

=PMT(L57/M57*12,M57*12,-K57)

The principal is $714,136.63 the rate is 8% and the terms is 7 years but it
returns a paymetns of $9,793,873.81. This is what it should be from the
online calculators I've used $14,480.11.

What am I doing wrong?

Marc



  #2   Report Post  
Posted to microsoft.public.excel.misc
R. Choate
 
Posts: n/a
Default What am I doing wrong with PMT function?

Without seeing your setup, I would ask if you are multiplying by 12 because you have a monthly int amount and are trying to convert?
Usually people are dividing by 12 to get a monthly pmt.. Also, I would use parenthesis around my division to control which math
comes first. Finally, I would have all of the elements of the function in individual cells so it would be easier to troubleshoot.

HTH
--
RMC,CPA


"Marc" wrote in message .net...
I have searched the net and formated the function like all the examples but
the payment is way out of line.

In cell L57 I have the annual interest rate, in M57 the numbers of years for
the loan and K57 is the principal.

=PMT(L57/M57*12,M57*12,-K57)

The principal is $714,136.63 the rate is 8% and the terms is 7 years but it
returns a paymetns of $9,793,873.81. This is what it should be from the
online calculators I've used $14,480.11.

What am I doing wrong?

Marc




  #3   Report Post  
Posted to microsoft.public.excel.misc
via135
 
Posts: n/a
Default What am I doing wrong with PMT function?


hi!

=PMT((L57/12)%,(M57*12),K57)

-via135





Marc Wrote:
I have searched the net and formated the function like all the examples
but
the payment is way out of line.

In cell L57 I have the annual interest rate, in M57 the numbers of
years for
the loan and K57 is the principal.

=PMT(L57/M57*12,M57*12,-K57)

The principal is $714,136.63 the rate is 8% and the terms is 7 years
but it
returns a paymetns of $9,793,873.81. This is what it should be from
the
online calculators I've used $14,480.11.

What am I doing wrong?

Marc



--
via135
------------------------------------------------------------------------
via135's Profile: http://www.excelforum.com/member.php...o&userid=26725
View this thread: http://www.excelforum.com/showthread...hreadid=539556

  #4   Report Post  
Posted to microsoft.public.excel.misc
CaptainQuattro
 
Posts: n/a
Default What am I doing wrong with PMT function?


Marc Wrote:
I have searched the net and formated the function like all the examples
but
the payment is way out of line.

In cell L57 I have the annual interest rate, in M57 the numbers of
years for
the loan and K57 is the principal.

=PMT(L57/M57*12,M57*12,-K57)

The principal is $714,136.63 the rate is 8% and the terms is 7 years
but it
returns a paymetns of $9,793,873.81. This is what it should be from
the
online calculators I've used $14,480.11.

What am I doing wrong?

Marc


The main problem that I see with your formula is that if you want to
divide the interest rate by the number of months, you need to enclose
the expression M57*12 in brackets, i.e. =PMT(L57/(M57*12),M57*12,-K57)


--
CaptainQuattro
------------------------------------------------------------------------
CaptainQuattro's Profile: http://www.excelforum.com/member.php...o&userid=32763
View this thread: http://www.excelforum.com/showthread...hreadid=539556

  #5   Report Post  
Posted to microsoft.public.excel.misc
R. Choate
 
Posts: n/a
Default What am I doing wrong with PMT function?

If you try =PMT(L57/12,M57*12,-K57) then you will get a pmt of $11,130.69. You were multiplying the # of years by 12 and you were
dividing the interest rate by that number, giving you a bad interest rate. Everything else looks fine, but it doesn't agree with the
# you got manually of $14,480.11. I think the 11K answer is correct for the terms you gave. Try testing it again.

--
RMC,CPA


"Marc" wrote in message .net...
I have searched the net and formated the function like all the examples but
the payment is way out of line.

In cell L57 I have the annual interest rate, in M57 the numbers of years for
the loan and K57 is the principal.

=PMT(L57/M57*12,M57*12,-K57)

The principal is $714,136.63 the rate is 8% and the terms is 7 years but it
returns a paymetns of $9,793,873.81. This is what it should be from the
online calculators I've used $14,480.11.

What am I doing wrong?

Marc






  #6   Report Post  
Posted to microsoft.public.excel.misc
Marc
 
Posts: n/a
Default What am I doing wrong with PMT function?

Thanks so far. It's closer. This is my formula now
=PMT((L57/M57*12)%,(M57*12),-K57) but it returns $137,117.87. If you divide
this by 12 you get $11,426.49. If I use the loan calculator at this site
http://www.tcalc.com/tvwww.dll?CalcLoan I get 14,480.12.

Marc


"R. Choate" wrote in message
...
If you try =PMT(L57/12,M57*12,-K57) then you will get a pmt of

$11,130.69. You were multiplying the # of years by 12 and you were
dividing the interest rate by that number, giving you a bad interest rate.

Everything else looks fine, but it doesn't agree with the
# you got manually of $14,480.11. I think the 11K answer is correct for

the terms you gave. Try testing it again.

--
RMC,CPA


"Marc" wrote in message

.net...
I have searched the net and formated the function like all the examples

but
the payment is way out of line.

In cell L57 I have the annual interest rate, in M57 the numbers of years

for
the loan and K57 is the principal.

=PMT(L57/M57*12,M57*12,-K57)

The principal is $714,136.63 the rate is 8% and the terms is 7 years but

it
returns a paymetns of $9,793,873.81. This is what it should be from the
online calculators I've used $14,480.11.

What am I doing wrong?

Marc






  #7   Report Post  
Posted to microsoft.public.excel.misc
 
Posts: n/a
Default What am I doing wrong with PMT function?

"Marc" wrote:
In cell L57 I have the annual interest rate, in M57 the
numbers of years for the loan and K57 is the principal.


"Marc" wrote later:
This is my formula now
=PMT((L57/M57*12)%,(M57*12),-K57)


You formula is completely wrong. The correct formula for
the terms stated earlier is simply:

=PMT(L57/12, M57*12, -K57)

(This assumes that L57 contain "8%" or "0.08", without quotes.)

That results in $11,130.69.

but it returns $137,117.87. If you divide this by 12 you get
$11,426.49.


Pure coincidence, as near as I can tell. Taken the PMT() result
and dividing by 12 makes no sense to me.

If I use the loan calculator at this site
http://www.tcalc.com/tvwww.dll?CalcLoan I get 14,480.12.


It might help if you specify the parameters and options you enter.

I get $11,130.69 -- same as PMT() -- from that calculator when
I enter the following:

Loan start date: 05-06-2006
First payment date: 06-06-2006
Loan amount: $714,136.63
Number of payments: 84
Payment period: Monthly
Interest rate: 8%
Compounding period: Monthly
Loan type: Fixed Rate

All other fields are "don't cares". I left them as-is.

If you entered different values, you are using different loan
terms. Which is right depends on the actual loan terms.

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
lookup function bringing in wrong info Julieeeee Excel Worksheet Functions 8 August 24th 05 03:53 PM
Automatically up date time in a cell Mark Excel Discussion (Misc queries) 5 May 12th 05 12:26 AM
Hyperlinks using R[1]C[1] and offset function in its cell referenc Elijah-Dadda Excel Worksheet Functions 0 March 5th 05 03:31 AM
Conversion SVC Excel Worksheet Functions 9 February 28th 05 02:29 PM
HOW CAN I GET OFFICE 2003 EXCEL BASIC TO NEST FUNCTIONS LIKE EXCE. Robert AS Excel Worksheet Functions 4 December 2nd 04 10:49 AM


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