Financial
1.3K monthly searches
Beginner
4 min read

FV Function in Excel - Calculate Future Value of Investments

Calculate the future value of investments with the FV function in Excel....

Quick Start

Syntax

=FV(rate, nper, pmt, [pv], [type])

Parameters

rate - Required. Interest rate per period (e.g., 7%/12 for monthly, 0.05 for annual 5%).

nper - Required. Total number of payment periods (e.g., 30*12=360 for 30 years monthly).

pmt - Required. Payment made each period. Negative for deposits (e.g., -500 for $500/month).

pv - Optional. Optional. Present value / initial investment (default: 0). Negative for deposits.

type - Optional. Optional. 0 = payments at end of period (default), 1 = beginning of period.

Simplest Example

AB
1Rate7%
2Years30
3Monthly Payment$500
4Future Value:
=FV(7%/12, 30*12, -500)
$566,764.05

Quick Reference

Retirement Savings
=FV(7%/12, 30*12, -500)

Example: $500/month for 30 years

=FV(0.00583, 360, -500) → $566,764

College Fund Growth
=FV(6%/12, 18*12, -200, -5000)

Example: $5K start + $200/month

=FV(0.005, 216, -200, -5000) → $82,073

Compound Interest Only
=FV(8%, 10, 0, -10000)

Example: $10K lump sum at 8%

=FV(0.08, 10, 0, -10000) → $21,589

Beginning-of-Period Payments
=FV(5%/12, 360, -100, 0, 1)

Example: Payments at period start

=FV(0.00417, 360, -100, 0, 1) → $83,573

Real-World Examples

Retirement Savings Projection

Project retirement account growth with monthly contributions and compound interest. The FV function in Excel calculates how your 401k, IRA, or pension savings will grow over decades with regular deposits. This Excel FV formula is critical for retirement planners, financial advisors, and individuals setting retirement goals. By modeling different contribution amounts and rates of return, you can determine whether your current savings rate will meet your retirement income needs, making the FV function essential for long-term financial planning and wealth accumulation strategies.

ABC
1Rate7%(annual return)
2Years30(retirement timeline)
3Monthly$500(contribution)
4Future Value
=FV(7%/12, 30*12, -500)
$566,764
Pro Tip: Use different rate scenarios (5%, 7%, 9%) to model conservative, moderate, and aggressive returns.
College Fund with Initial Deposit

Calculate college fund growth starting with an initial lump sum plus regular monthly contributions. The Excel FV function handles both present value (initial deposit) and periodic payments (monthly contributions) simultaneously. This FV formula is perfect for parents planning 529 college savings plans, grandparents setting up education trusts, or anyone building wealth through combined lump sum and recurring deposit strategies. The compound interest effect on both initial capital and ongoing contributions creates powerful wealth accumulation.

ABC
1Initial Deposit$5,000(pv)
2Monthly$200(pmt)
3Years18(until college)
4Total Saved
=FV(6%/12, 18*12, -200, -5000)
$82,073
Pattern: FV combines initial lump sum (pv) with periodic deposits (pmt) for total future value

Common Mistakes to Avoid

=FV(7%, 30, -500)Rate/period mismatch - annual rate with monthly payments

❌ The Problem:

  • Using 7% annual rate but making monthly payments
  • Calculates as if you pay $500 once per year for 30 years
  • Severely underestimates actual future value
  • Rate and nper must match the same time unit

✅ Solution:

=FV(7%/12, 30*12, -500)

Divide annual rate by 12 for monthly rate, multiply years by 12 for monthly periods. The FV function in Excel requires rate and nper to match - if payments are monthly, rate must be monthly rate and nper must be number of months.

=FV(5%, 10, 100)Positive payment instead of negative

❌ The Problem:

  • Positive pmt represents withdrawals, not deposits
  • Returns negative future value (you owe money)
  • Excel uses accounting convention: deposits are outflows (negative)
  • Confusing for financial projections

✅ Solution:

=FV(5%, 10, -100)

Use negative pmt for deposits/contributions (cash you pay out). The Excel FV formula returns positive result showing what you will have in the future. Think: negative payments going out now = positive value coming back later.

=FV(6%, 10, -1000, -5000, 0)Not using type=1 for beginning-of-period payments

❌ The Problem:

  • Type=0 (default) assumes payments at end of each period
  • Beginning-of-period payments earn an extra period of interest
  • Underestimates FV by one period's growth on each payment
  • Matters for annuities due and pension calculations

✅ Solution:

=FV(6%, 10, -1000, -5000, 1)

Use type=1 when payments occur at the start of each period (annuity due). The FV function in Excel calculates higher values with type=1 because each payment has one more period to grow. Most retirement contributions are end-of-period (type=0), but some annuities pay at the beginning.

Frequently Asked Questions

Other Financial Functions

Related Formulas

Master these FV Function variants:

Master Excel FV Function

From basics to advanced - AI generates perfect formulas instantly.