Returns a number specifying the future value of an annuity based on periodic, fixed payments and a fixed interest rate.
Overloads
Parameters
Return value
Number value.
Examples
FV(0.06 / 12, 20 * 12, -1100) - Returns 507144.99. So your account will have $507,145. The payment (-1100) is negative since you are paying out the money to the plan.
The above example assumes that you make your payments into the plan at the end of the month. Thus, after the first month, your plan would have $1100 in it, since there wouldn't have been enough time for any interest to accrue.
FV(0.06 / 12, 20 * 12, -1100, 0, 1) - Returns 510786.21 (rounded to the nearest integer). So your account will have $510,786. You will save $3,642 more by depositing at the beginning of the month.
FV(0.06 / 12, 20 * 12, -1100, -25000, 1) - Returns 593541.33 (rounded to the nearest integer). Your account will have $ 593,541 after 20 years.
FV(0.06 / 12, 20 * 12, 0, -25000) - Returns 82755.12 (rounded to the nearest integer). You would have $82755.12 in your account.