Calculating the Future Value of an Investment
Just as the payment is usually the most important value for a loan calculation, the future value is usually the most important value for an investment calculation.
After all, the purpose of an investment is to place a sum of money (the present value) in an instrument for a time, after which you end up with a new (and, hopefully, greater) amount: the future value.
To calculate the future value of an investment, use the FV() function:
FV(rate, nper[, pmt][, pv][, type])
rate The fixed rate of interest over the term of the investment.
nper The number of periods in the term of the investment.
pmt The amount deposited in the investment each period (the default is 0).
pv The initial deposit (the default is 0).
type The type of deposit. Use 0 (the default) for end-of-period deposits; use 1 for beginning-of-period deposits.
In the simplest future value scenario, you invest a lump sum and let it grow according to the specified interest rate and term, without adding any deposits along the way. In this case, you use the FV() function with the pmt argument set to 0:
FV(rate, nper, 0, pv, type)
For example, Figure 5.18 shows the future value of $10,000 invested at 5 percent over 10 years.
Another common investment scenario is to make a series of deposits over the term of the investment, without depositing an initial sum. In this case, you use the FV() function with the pv argument set to 0:
FV(rate, nper, pmt, 0, type)
For example, Figure 5.19 shows the future value of $100 invested each month at 5 percent over 10 years. Notice that the interest rate and term are both converted to monthly amounts because the deposit occurs monthly.
For best investment results, you should invest an initial amount and then add to it with regular deposits. In this scenario, you need to specify all the FV() function arguments (except type). For example, Figure 5.20 shows the future value of an investment with a $10,000 initial deposit and $100 in monthly deposits at 5 percent over 10 years.
// Related Posted - GOOGLE!
Related Websites
- Introducing Investment Grade Corporate Bonds Investment grade corporate bonds are the highest-rated and consequently the least-risky amongst debt instruments aside from Treasury securities (the shorter...
- Weakend: Financial Calculators Back in college there were only a few things that were very important to the success of my day. One...
- GICs - Guaranteed Investment Certificates Explained Guaranteed Investment Certificates (GIC) are a low risk investment were you lend banks, trust companies and credit unions money for...
- A gift in a time of crisis - Denmark [/caption] The national government owes it to the rest of the country to promote growth in Greater Copenhagen The economic...
- How I Find Value Where Others Do Not Since the recession began, I've been struggling with the concept of trading down versus trading down to better value. In...



