financefv
Purpose
The function returns future value (fv) of the investment based on the constant interest rate.
Arguments
The function requires three numerical arguments:
-
rate - a rate for the specified period;
If an annual rate is used, recalculation is necessary, e.g. rate/12. -
nper - a total number of annuity payment periods;
If a period equals 2 years, and if payments are monthly, nper is 2*12=24. -
pmt - fixed payment amount for each period;
Usually, pmt includes principal payment and interest payment, but does not include other taxes and fees.
If pmt is omitted, 0 is specified, and the pv argument becomes a required argument.
The optional numerical arguments are:
-
pv - a present value at the moment;
If the argument is omitted, the suggested value is 0, and the pmt argument is required. -
type - a number, 0 or 1, denoting payment deadline:
-
0 - payment due in the end of the period;
-
1 - payment due in the beginning of the period.
-
Expenditure transactions (present value, payment per period) must be specified with the minus sign, i.e. must be negative values. |