PPmt Function [VBA]

Devolve para um determinado período o pagamento sobre o principal para um investimento com base em pagamentos constantes e periódicos, e uma taxa de juros constante.

warning

This constant, function or object is enabled with the statement Option VBASupport 1 placed before the executable program code in a module.


Sintaxe:


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

Valor de retorno:

Double

Parâmetros:

Rate is the periodic interest rate.

Per The period number for which you want to calculate the principal payment (must be an integer between 1 and Nper).

NPer is the total number of periods, during which annuity is paid.

VA é o valor monetário atual de um investimento.

VF (opcional) é o valor futuro do empréstimo ou investimento.

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

0 - o pagamento é devido no fim do período;

1 - o pagamento é devido no início do período.

Códigos de erro

5 Chamada de procedimento inválido

Exemplo:


REM ***** BASIC *****
Option VBASupport 1
Sub ExamplePPmt
' Calcula os pagamentos principais durante os meses 4 e 5, para um empréstimo que deverá ser pago por inteiro
' over 6 years. Interest is 10% per year and payments are made at the end of the month.
Dim ppMth4 As Double
Dim ppMth5 As Double
' Principal payment during month 4:
ppMth4 = PPmt( 0.1/12, 4, 72, 100000 )
print ppMth4 ' ppMth4 is calculated to be -1044,94463903636.
' Principal payment during month 5:
ppMth5 = PPmt( 0.1/12, 5, 72, 100000 )
print ppMth5' ppMth5 is calculated to be -1053,65251102833.
End Sub

Necessitamos da sua ajuda!