You can figure out what your 401(k) account will be worth in the future by using the FV function in Microsoft Excel or just about any other popular spreadsheet programme.
The FV function works out how much an investment will be worth in the future based on its interest rate.
the number of payments, the payment, the investment's current value, and,
optionally, the switch for the type of annuity. (More on the change in the type of annuity in a bit.)
This is the syntax for the function:
=FV(rate,nper,pmt,pv,type)
I agree that this little bit is pretty hard to understand. But let's say you want to figure out how much your 401(k) will be worth in the future if it already has $10,000 in it and you're putting $200 into it every month. Also, let's say you want to know what the account balance, or its future value, will be in 25 years and you expect to earn 10% interest each year.
In this case, you enter the following into a worksheet cell to use the FV function to figure out the future value of the 401(k) account:
=FV(10 percent /12,25*12,-200,-10000,0)
The function gives back the number 385936.13, which is about $386,000 USD.
A few things to keep in mind: the formula divides the annual interest rate by 12 to turn the 10% annual interest rate into a monthly interest rate. In the same way, the formula multiplies 25 by 12 to turn a term of 25 years into a term of months.
Also, notice that both the monthly payment and the initial present value are negative because they represent cash outflows. And the function gives back a positive value for the future value amount because it represents money the investor will get in the end.
The type-of-annuity switch is that 0 at the end of the function. If you set the type-of-annuity switch to 1, Excel assumes that payments happen at the start of the period (month in this case), which is when annuity payments are usually made. If you set the annuity switch to 0 or don't include the argument, Excel assumes that payments happen at the end of the period, as is typical for annuities.