In Excel: use =FV(rate, nper, pmt, [pv]) — it projects what regular contributions plus a starting balance will grow to.
On this page8
Syntax
Arguments
| Argument | required / optional | Description |
|---|---|---|
rate | required | Growth rate per period. |
nper | required | Number of periods. |
pmt | required | Amount added each period, entered as negative. |
pv | optional | Starting balance, also entered as negative. |
type | optional | 0 for deposits at period end, 1 for the beginning. |
Related functions
Total interest earned: €6,470.09 · Monthly · 10 years
| Year | Interest | Balance |
|---|---|---|
| 1 | €511.62 | €10,511.62 |
| 2 | €537.79 | €11,049.41 |
| 3 | €565.31 | €11,614.72 |
| 4 | €594.23 | €12,208.95 |
| 5 | €624.63 | €12,833.59 |
| 6 | €656.59 | €13,490.18 |
| 7 | €690.18 | €14,180.36 |
| 8 | €725.49 | €14,905.85 |
| 9 | €762.61 | €15,668.47 |
| 10 | €801.63 | €16,470.09 |
Need it as an auditable file?
Ships inside the linked template — formula-driven, unlocked, audit-ready.
Need it as an auditable file?
Ships inside the linked template — formula-driven, unlocked, audit-ready.
What this does
FV projects a savings balance forward: a starting amount, a regular contribution and a growth rate become a figure at the end of the term. It is the compound-interest calculation with contributions built in, which is what separates it from a simple (1+r)^n. Enter contributions and the opening balance as negative, since they are money leaving your pocket, and the result comes back positive. Setting the type argument to 1 models deposits made at the start of each period, which grows slightly faster because each contribution earns for one extra period. Keep the inputs visible and clearly labelled and the whole thing stays auditable — anyone who opens the file later, including you, can see at a glance exactly what feeds the result and change one assumption without hunting through the formula. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “future value function in excel”. Start on a copy or a tiny sample, keep the affected formula visible, and compare the result with the tool above before you touch the real workbook. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. The point is a calculation you can defend to a CFO or an auditor, but the practical win is that someone else can open the file and understand what happened without asking you.
A worked example
Saving 500 a month for 20 years at 6 %, starting from 10,000: =FV(6%/12, 240, -500, -10000) returns about 264,000. Of that, 130,000 is contributions and the rest is growth. Depositing at the start of each month instead, =FV(6%/12, 240, -500, -10000, 1), adds roughly another 1,100. FV is the projection behind every savings and retirement plan, and it is the contributions argument that makes it more useful than raw compounding. A practical tip before you scale it up: build it once on a small block of test data, confirm the number against the tool on this page, and only then point it at your real sheet. That one habit catches almost every mistake while it is still cheap to fix, long before a wrong figure reaches a report or a colleague.
In Google Sheets
Google Sheets handles this almost identically to Excel. The formula syntax above is the same, and the menu lives under a slightly different label rather than a ribbon tab. Use the platform toggle at the top of the page to switch every keyboard shortcut between Windows and Mac, and expect at most cosmetic differences in naming. Keep this page bookmarked for the next time the same question comes up. Better still, rebuild the example once in your own sheet — doing it yourself, with the tool above to check against, is what turns a copied formula into a technique you own. Treat “future value function in excel” as a small building block rather than a chore. Once the inputs sit in their own cells and the formula reads from them, the same setup answers a dozen related questions with a tweak, and Excel keeps every dependent figure current as the data changes. The tool above is there so you can rehearse and verify before committing anything to a real workbook; the steps and worked example are there so the logic sticks. Get it right once and it stops costing you time — it starts saving it, every time the question comes back around.
Common mistakes
- Entering contributions as positive, which returns a negative future value.
- Mixing an annual rate with monthly periods, which vastly overstates the result.
- Presenting a single projection as a forecast; vary the rate to show the range instead.
Frequently asked questions
How do I project savings with monthly deposits?
=FV(annual_rate/12, years*12, -monthly, -starting_balance). Both cash outflows are negative.
What is the difference between FV and compound interest?
A plain compound-interest formula grows a lump sum. FV also handles a regular contribution each period.
What does the type argument change?
Setting it to 1 puts each deposit at the start of the period, so every contribution earns for one extra period.