Ajuda del LibreOffice 7.5
Calculates the number of periods for a loan or investment.
NPer (Rate as Double, Pmt as Double, PV as Double, [FV as Variant], [Due as Variant])
Double
Tipus és el tipus d'interés periòdic.
PMT és l'anualitat que es paga regularment per període.
PV is the (present) cash value of an investment.
FV (optional) is the future value of the loan / investment.
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.
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