Returns the future value of an investment with constant interest rate and periodic payments.
Syntax
FV(rate; nper; pmt; [pv]; [type])
rate: The fixed interest rate per period. Eg., 0.06
nper: The total number of payment periods in the term. Eg., 10
pmt: The payment made in each period. This can be omitted when present_value is given, where it defaults to 0. Eg., -200
pv: The initial sum present at the beginning of the term. It defaults to 0 if omitted. Eg., -500
type: The time when the payments are made. It defaults to 0 when omitted.
Remarks
The amount paid out is represented as negative values, while those received are represented as positive values.
Examples
|
Formula |
Result |
|
=FV(A2;B2;C2;D2;E2) |
3689.752376056 |
|
=FV(A3;B3;C3;D3;E3) |
1034970.703125 |
|
=FV(A4;B4;C4;D4;E4) |
7594.650268555 |
Possible Errors
|
Errors |
Meaning |
|
#N/A! |
|
|
#NAME! |
|
|
#VALUE! |
|
|
#REF! |
|
Similar Functions