How to Use PV Function in Excel

There are two ways to “use pv function in excel”: the quick way you copy and the durable way you understand. This page gives you both. The exact Excel answer is above with a tool to test it; below, we build the small mental model that makes the fix stick, so the next variation of the same problem solves itself.

Exact answer

In Excel: use =PV(rate, nper, pmt) — it discounts a stream of equal future payments back to what they are worth today.

On this page8

Syntax

=PV(rate, nper, pmt, [fv], [type])

Arguments

Argumentrequired / optionalDescription
raterequiredDiscount rate per period.
nperrequiredNumber of periods.
pmtrequiredPayment each period. Use 0 for a single future lump sum.
fvoptionalA lump sum at the end, on top of the payments.
typeoptional0 for end-of-period payments, 1 for beginning.

Related functions

FVNPVPMT
ƒxNPV & IRR CalculatorLive
%
Net present value
€1,307.29

3 one value per year

IRR
16.34%
=NPV(rate, flows)−investment · =IRR(B1:B4)

Need it as an auditable file?

Ships inside the linked template — formula-driven, unlocked, audit-ready.

View template
Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

Need it as an auditable file?

Ships inside the linked template — formula-driven, unlocked, audit-ready.

View template

What this does

PV answers what a future stream of money is worth now, given a discount rate. It handles level payments only; for irregular amounts, NPV is the function. The everyday use is deciding between a lump sum today and instalments later — a lottery payout, a settlement offer, a lease against a purchase. The discount rate is the assumption that does all the work: it represents what the money could earn instead, and a small change in it moves the answer substantially, which is worth showing as a small sensitivity table rather than a single number. 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. Treat “use pv function in excel” as a small repeatable workflow rather than a one-off click you hope to remember next time. Use a small test block before the live file, so any surprise in the affected formula shows up while it is still harmless. 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. That turns a calculation you can defend to a CFO or an auditor into a method you can reuse, explain, and defend when the workbook leaves your screen.

A worked example

An offer of 1,000 a month for 10 years, discounted at 6 %: =PV(6%/12, 120, -1000) returns about 90,073 — meaningfully less than the 120,000 headline. A single 50,000 payment due in 5 years at the same rate: =PV(6%, 5, 0, -50000) returns roughly 37,363. PV is what makes a lump sum and an instalment plan comparable, which is the recurring question in every leasing, settlement and payout decision. If there is any chance you will reuse this, drop it into a small template tab right now: a labelled input area on the left and the formula beside it, checked once against the tool above. Next time the same question comes up, the answer is a single paste away instead of a rebuild from memory.

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. Nothing on this page is behind a login: the tool runs entirely in your browser, the formula is shown in full with one-click copy, and the steps work the same on Windows and Mac. That is the whole promise here — the exact answer, a way to prove it on your own numbers, and just enough context to make it stick. Here is the takeaway for “use pv function in excel”: copy the answer if you are busy, but if you have a spare few minutes, rebuild the example in Excel yourself with the tool above open beside it. That single pass — type it, run it, watch the result move when you change an input — is what turns a formula you found into a technique you trust. Keep your inputs labelled and referenced, never hard-coded, and the same sheet stays correct and auditable as it grows. Done that way, you will not need to look this up again, and you will be the person others ask.

Common mistakes

  • Using PV for irregular cash flows — it assumes every payment is identical. NPV handles varying amounts.
  • Choosing a discount rate without justifying it; it drives the result more than any other input.
  • Sign confusion: enter payments as negative to get a positive present value.

Frequently asked questions

What is the difference between PV and NPV?

PV assumes a constant payment every period. NPV takes a range of individually different cash flows.

Which discount rate should I use?

The return you could get on the money elsewhere — a cost of capital, a savings rate, or a hurdle rate. State the assumption explicitly.

How do I value a single future amount?

Set pmt to 0 and put the amount in fv: =PV(rate, nper, 0, -amount).