Ajuda do LibreOffice 25.2
Devolve o Valor Presente de um investimento resultante de uma série de pagamentos regulares.
Pmt( Rate as Double, NPer as Double, Pmt as Double, [FV as Variant], [Due as Variant] )
Double
taxa é a taxa de juro por período.
nper é o número total de períodos de pagamento do investimento.
pgto é o pagamento efectuado em cada período.
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.
REM ***** BASIC *****
Option VBASupport 1
Sub ExamplePV
' Calculate the present value of an annuity that pays $1,000 per month over 6 years.
' Interest is 10% per year and each payment is made at the end of the month.
Dim pv1 As Double
pv1 = PV( 0.1/12, 72, -1000 )
print pv1 ' pv1 is calculated to be 53978,6654781073.
End Sub