Funció Pmt [VBA]

Calculates the constant periodic payments for a loan or investment.

Icona d'avís

Aquesta funció o constant s'activa amb l'expressió Opció VBASupport 1 situada abans del codi de programació executable en un mòdul.


Sintaxi:

Pmt( Rate as Double, NPer as Double , PV as Double , [FV as Variant], [Due as Variant] )

Valor de retorn:

Double

Paràmetres:

Tipus és el tipus d'interès periòdic.

NPer és el nombre total de períodes durant els quals es paga l'anualitat.

VA és el valor efectiu (actual) d'una inversió.

VF és el valor futur d'un préstec o inversió.

Due (optional) defines whether the payment is due at the beginning or the end of a period.

0 - el pagament es fa al final del període;

1 - el pagament es fa al començament del període.

Codis d'error

5 La crida al procediment no és vàlida

Exemple:

REM ***** BASIC *****

Option VBASUPPORT 1

' Calculate the monthly payments to a loan that is to be paid in full over 6 years.

' Interest is 10% per year and payments are made at the end of the month.

Sub ExamplePmt

 Dim myPmt As Double

 myPmt = Pmt( 0.1/12, 72, 100000 )

 print MyPmt 'is calculated to be -1852,58377757705

End Sub