FV Function
Syntax
Arguments
- investments
Numeric. Amount of each equal investment.
- Interest_rate
Numeric. Interest rate per time period.
- time_periods
Numeric. Number of time periods (and investments).
Description
Returns the future value of a stream of equal investments over a specified integer term.
Discussion
FV() returns the future value of a stream of equal Investments, invested at a fixed Interest_Rate for a certain Number_Of_Time_Periods. The investment amount can be either positive or negative; however, the Interest_Rate and Number_Of_Time_Periods must be positive. You use this function to find the amount that an investment will be worth (sum of all principal payments plus accumulated interest) at some future point.
Example
Assume a 7% per annum interest rate. To compute the amount of money in a checking account at the end of one year if you deposit $100 each month at the beginning of the month, use the following expression:
fv(100,(.07/12),12) -> 1239.258529 fv(100, (.07/12), 13) -> 1346.487537 fv(100, (.07/12), 12.5) -> 1346.487537 fv2(100, (.07/12), 12.5) -> 1292.795072
Note the differences from FV2().
See Also