Seek Returns

How to Calculate Present Value of Annuity in Excel

You are offered a choice: $1,000 per year for the next five years, or a single lump sum today. How much is that stream of payments actually worth right now? The answer depends on the discount rate you use, and the math that gets you there - discounting each future payment back to today and summing them up - is the present value of an annuity.

This is one of the most frequently used calculations in finance: it drives loan analysis, pension valuation, lease accounting, and every “lump sum vs. installments” decision. Excel can handle it in a single cell.

This guide covers three scenarios - an ordinary annuity (fixed payments at the end of each period), an annuity due (payments at the beginning), and a growing annuity (payments that increase each period) - with the formulas, the Excel implementation, and a cross-check for each.

What the Present Value of an Annuity Measures

The present value of an annuity is the single lump sum today that is financially equivalent to a stream of equal future payments, given a chosen discount rate. It answers: “At discount rate rr, what lump sum today would be financially equivalent to this payment stream?”

The logic is the time value of money: a dollar today is worth more than a dollar next year, because you can invest today’s dollar and earn interest on it. Each future payment is therefore worth progressively less in today’s terms. The present value of an annuity is the sum of all those discounted amounts.

Two inputs are critical:

  1. The discount rate. There is no single universally correct number; it depends on the timing and risk of the cash flows. For very low-risk cash flows, Treasury yields can serve as a benchmark. For riskier cash flows, the discount rate should be higher. A higher rate always produces a lower present value.
  2. The payment timing. Payments at the end of each period (ordinary annuity) vs. the beginning (annuity due) shifts every payment by one period of discounting. The distinction matters most when the rate is high or the number of periods is large.

Ordinary Annuity: Fixed Payments at Period End

The Formula

PV=PMT×1(1+r)nrPV = PMT \times \frac{1 - (1 + r)^{-n}}{r}

Where:

The fraction 1(1+r)nr\frac{1 - (1 + r)^{-n}}{r} is PVIFA - the present value interest factor of an annuity - which we covered in a separate guide. Here we apply it directly with a payment amount.

Calculating It in Excel

Set up your data:

CellContents
A1Payment
A21000
B1Rate
B20.05
C1Periods
C25
D1Present Value
D2(formula here)

In D2, use Excel’s built-in PV function:

=-PV(B2, C2, A2, 0, 0)

The arguments:

For $1,000 per year, 5% rate, 5 years, Excel returns $4,329.48.

Cross-check with the closed-form formula

In D4 type Formula check, and in D5 type:

=A2*(1-(1+B2)^-C2)/B2

This should also return 4329.48, confirming the PV function result.

Excel worksheet computing the present value of a $1,000 ordinary annuity at 5% for 5 years using the PV function
Excel worksheet computing the present value of a $1,000 ordinary annuity at 5% for 5 years using the PV function

Annuity Due Variant

If payments occur at the beginning of each period (rent, lease payments, some retirement contributions), simply change the type argument to 1:

=-PV(B2, C2, A2, 0, 1)

For the same inputs, this returns $4,545.95 - about 5% more, because every payment is received one period earlier and therefore discounted one less time.

Alternatively, multiply the ordinary annuity result by (1+r)(1 + r):

=-PV(B2, C2, A2, 0, 0)*(1+B2)

Both approaches give the same answer.

Growing Annuity: Payments That Increase Each Period

A growing annuity is a payment stream where each payment rises at a constant rate gg per period. Real-world examples include a salary that rises 3% per year, a lease with annual escalation clauses, or expected dividends from a stock with steady growth.

Excel has no dedicated built-in function for the present value of a growing annuity, so you enter the formula directly.

The Formula When the Discount Rate and Growth Rate Differ

PV=PMT×1(1+g1+r)nrgPV = PMT \times \frac{1 - \left(\dfrac{1 + g}{1 + r}\right)^{n}}{r - g}

Where:

Note: this formula requires rgr \neq g. When r=gr = g, the denominator is zero, and for the same end-of-period timing the present value simplifies to PMT×n/(1+r)PMT \times n / (1 + r). That is why the equal-rate case is handled separately below.

Calculating It in Excel

Set up your data:

CellContents
A1First Payment
A21000
B1Rate
B20.05
C1Growth Rate
C20.03
D1Periods
D25
E1Present Value
E2(formula here)

In E2, type:

=A2*(1-((1+C2)/(1+B2))^D2)/(B2-C2)

For a $1,000 first payment, 5% discount rate, 3% growth rate, 5 years, Excel returns $4,583.92.

This is higher than the ordinary annuity’s $4,329.48 because each successive payment is larger (the second payment is $1,030, the third $1,060.90, and so on).

Cross-check by discounting each payment individually

To verify, you can build a small table that discounts each year’s payment separately:

YearPaymentPVIFDiscounted
1$1,000.000.9524$952.38
2$1,030.000.9070$934.24
3$1,060.900.8638$916.50
4$1,092.730.8227$899.13
5$1,125.510.7835$881.68
Total$4,583.92

The sum matches the closed-form result.

Excel worksheet computing the present value of a growing annuity with a 3% growth rate at 5% for 5 years
Excel worksheet computing the present value of a growing annuity with a 3% growth rate at 5% for 5 years

Edge Case: Equal Discount and Growth Rates

If the discount rate equals the growth rate, the standard formula divides by zero. In this special case, the present value is:

PV=PMT×n1+rPV = \frac{PMT \times n}{1 + r}

In Excel, you can handle both cases with an IF statement:

=IF(B2=C2, A2*D2/(1+B2), A2*(1-((1+C2)/(1+B2))^D2)/(B2-C2))

This returns the correct result regardless of whether rr and gg happen to be equal.

Practical Applications

Loan evaluation

You receive two offers for a car loan: both have the same total payments, but different rates and terms. Computing the present value of each payment stream at the same discount rate tells you which is actually cheaper in today’s money.

Pension lump sum vs. monthly checks

Many pension plans offer a choice between a lump sum at retirement and monthly payments for life. The present value of the monthly stream - using a discount rate that matches your personal investment opportunities - is the number to compare against the lump sum.

Lease accounting

Under IFRS 16 / ASC 842, a lessee measures the lease liability as the present value of future lease payments. The right-of-use asset usually starts from that liability but may be adjusted for items such as prepaid lease payments, lease incentives, initial direct costs, and restoration or dismantling obligations. If lease payments escalate at a fixed annual rate, a growing-annuity-style framework may be appropriate; if they are fixed, the ordinary annuity formula works.

Common Mistakes

Frequently Asked Questions

What is the difference between the present value of an annuity and PVIFA?

PVIFA is the present value per $1 of payment - a pure multiplier. The present value of an annuity is PVIFA * Payment. They encode the same math; PVIFA just factors out the payment amount so you can reuse the factor.

Can I use the PV function for a growing annuity?

No. Excel’s PV function only handles constant payments (ordinary annuity or annuity due). For a growing annuity you must enter the formula manually, as shown above.

How do I handle payments that change by a fixed dollar amount, not a percentage?

That is an arithmetic gradient annuity, not a growing (geometric) annuity. In practice, the simplest approach is to build a cash-flow schedule and discount each payment explicitly, using NPV for equal spacing or XNPV when dates are irregular.

Should I use a nominal or real discount rate?

Match the rate to the cash flow. If payments are fixed dollar amounts (nominal), use a nominal rate. If payments are expressed in constant (inflation-adjusted) dollars, use a real rate. Mixing them is a common source of error.

Why does doubling the number of periods not double the present value?

Because of discounting. Payments far in the future are worth much less today. The present value of an annuity rises with nn, but at a decreasing rate, and for a level perpetuity it approaches PMT/rPMT / r.

What discount rate should I use?

There is no universal answer. For a risk-free stream, use a Treasury yield of matching maturity. For a risky stream, add a risk premium - the rate should reflect the probability that payments might not actually arrive. In corporate finance, the weighted average cost of capital (WACC) is the standard benchmark. Always run a sensitivity analysis.