Home Privacy Policy Feedback Link to us Site Map Forums

Excel: PV Function


In Excel, the PV function returns the present value of an investment based on an interest rate and a constant payment schedule.

The syntax for the PV function is:

PV( interest_rate, number_payments, payment, FV, Type )

interest_rate is the interest rate for the investment.

number_payments is the number of payments for the annuity.

payment is the amount of the payment made each period. If this parameter is omitted, you must enter a FV value.

FV is optional. It is the future value of the payments. If this parameter is omitted, the PV function assumes FV to be 0.

Type is optional. It indicates when the payments are due. Type can be one of the following values:

Value Explanation
0 Payments are due at the end of the period. (default)
1 Payments are due at the beginning of the period.

If the Type parameter is omitted, the PV function assumes a Type value of 0.


Applies To:

  • Excel 2007, Excel 2003, Excel XP, Excel 2000

For example:

Let's take a look at a few examples:

This first example returns the present value of an investment that pays $250 at the end of every month for 2 years. The money paid out will earn 7.5% annually.

=PV(7.5%/12, 2*12, 250, , 0)


This next example returns the present value of an investment that pays $50 at the beginning of every week for 4 years. The money paid out will earn 6% annually.

=PV(6%/52, 4*52, 50, , 1)


This next example returns the present value of an investment that pays $100 at the end of every year for 10 years. The money paid out will earn 5.25% annually.

=PV(5.25%/1, 10*1, 100, , 0)


VBA Code

The PV function can also be used in VBA code. For example:

Dim LValue As Currency

LValue = PV(0.0525/1, 10*1, 100, , 0)

In this example, the variable called LValue would now contain the value of ($762.88)