Função FV [VBA]

Devolve o valor futuro de um investimento com base em pagamentos constantes e periódicos, e uma taxa de juros constante (Valor futuro).

warning

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


Sintaxe:


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

Valor de retorno:

Double

Parâmetros:

taxa é a taxa de juro por período.

nper é o número total de períodos de pagamento (por ano).

Pgto corresponde à anuidade paga regularmente por período.

VA (opcional) é o valor monetário atual de um 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 - o pagamento é devido no início do período.

Códigos de erro

5 Chamada de procedimento inválido

Exemplo:


Sub ExampleFV
 Dim myFV As Double
 myFV = =FV(0.04, 2, 750, 2500)
 Print myFV 'devolve -4234,00 unidades monetárias. O valor no final do investimento é 4234,00 unidades monetárias.
End Sub

Necessitamos da sua ajuda!