How do you use the Financial.Pmt in Visual Basic to calculate a yearly loan?

Loan is 9000 dollars for three years at a interest rate of 12%.

3 years = 36 payments (1 per month)
monthly int = 12%APR/ 12 = .12/12 = .01
Present Value PV = 9000

VB2005 express intellisense will provide instructions

Dim pymt as Double

pymt = financial.pmt( 0.12/12, 36,9000, , )

Leave a comment

1 Comments.

  1. 3 years = 36 payments (1 per month)
    monthly int = 12%APR/ 12 = .12/12 = .01
    Present Value PV = 9000

    VB2005 express intellisense will provide instructions

    Dim pymt as Double

    pymt = financial.pmt( 0.12/12, 36,9000, , )
    References :

Leave a Reply

Your email address will not be published. Required fields are marked *

*


You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>