Quick Answer

FV Function

Calculates the future value of a series of equal payments and/or a lump sum.

✓ Excel✓ Google SheetsExcel All versions

Syntax

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

Parameters

ParameterDescriptionRequired
rateInterest rate per period.Required
nperTotal number of payment periods.Required
pmtPayment made each period (must remain constant).Required
pvPresent value or lump-sum amount (default 0).Optional
type0 = end of period (default), 1 = beginning of period.Optional

Basic Example

Future value of monthly savings

=FV(0.06/12, 120, -500)
Result$81,939.67

Saves $500 per month at 6% annual interest for 10 years. Result is positive because it is a future balance.

Advanced Examples

Example 1: FV with a starting balance

Retirement planning

Future value of an IRA with an initial balance and monthly contributions

=FV(0.07/12, 240, -500, -10000)
Result: $315,512.77
Starts with $10,000 and adds $500 monthly for 20 years at 7% annual interest.

How FV Works

FV discounts each payment back to the start and compounds it forward to the end of the investment term. Payments are treated as outflows, so they are typically entered as negative values.

1
Enter rate
Type the rate
2
Enter nper
Type the nper
3
Enter pmt
Type the pmt
4
Enter pv
Type the pv
5
Calculate
Press Enter to get the result.

Important Notes & Limitations

  • All inputs must use the same period unit (e.g., monthly rate and monthly nper).

  • Returns negative if all cash flows are positive, because Excel treats the result as the opposite cash flow.

  • Does not account for taxes or fees.

Common Errors & Fixes

Wrong magnitudeAnnual rate was not divided by periods per year.

Fix: Divide the annual rate by the number of periods per year.

Negative resultPayments were entered as positive numbers.

Fix: Enter payments as negative numbers to represent outflows.

Download Practice File

Practice FV with Real Data

Download a sample CSV file with pre-populated data and practice exercises for the FV function. Works in both Excel and Google Sheets.

Works in Google SheetsCompatible with ExcelIncludes exercises

File format: CSV (comma-separated values) - opens in Excel, Google Sheets, and all spreadsheet apps

Related Tutorials

Frequently Asked Questions

What is the difference between FV and PV?
FV calculates the future value of cash flows. PV calculates the present value of future cash flows.
Can FV handle a single lump sum?
Yes, set pmt to 0 and enter the lump sum as pv.
Why is FV negative?
Because payments are positive inflows but the future value is an outflow in the same cash-flow convention. Use -FV or ABS to display a positive balance.