NPer Function [VBA]

Calcula o número de períodos de um empréstimo ou investimento.

warning

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


Sintaxe:


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

Valor de retorno:

Double

Parâmetros:

taxa é a taxa de juro por período.

Pgto corresponde à anuidade paga regularmente por período.

VA é o valor 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 - the payment is due at the end of the period;

1 - the payment is due at the beginning of the period.

Códigos de erro

5 Chamada de procedimento inválido

Exemplo:


REM ***** BASIC *****
Option VBASupport 1
Sub ExampleNPer
 Dim period As Double
 period = NPer( 0.06, 153.75, 2600)
 Print period ' returns -12,02. The payment period covers 12.02 periods.
End Sub

Necessitamos da sua ajuda!