Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Question regarding the Pmt function...

Status
Not open for further replies.

Aleena

Programmer
Oct 3, 1999
27
US
It is dumb question time again (yay!!)<br>
I am trying to use the Pmt function to calculate the payment amount on a loan. The loan has an annual precentage rate of 6% and payments occur once a year for 15 years...<br>
I set it up as follows:<br>
<br>
payment = Pmt(0.06 / 1, 15, amount)<br>
<br>
With amount being a variable dimmed as single that is input by the user. The answer I get is not even close to the truth. Any help on what I did wrong would be greatly appreciated :)<br>
<br>
Thanks,<br>
Aleena
 
payment = Pmt(0.06 / 1, 15, amount)<br>
<br>
Should be:payment = Pmt(0.06 , 15, amount)<br>
<br>
If there were 12 payments in a year:<br>
<br>
Payment = Pmt(0.06/12 , 15 * 12, amount)<br>

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top