Get the present value of an investment
=PV(rate, nper, pmt, [fv], [type])
| Parameter | Description |
|---|---|
rate |
The interest rate per period. |
nper |
The number of payment periods. |
pmt |
The payment made each period. |
fv |
[optional] Future value. If omitted, defaults to zero. |
type |
[optional] Payment type, 0 = end of period, 1 = beginning of period. Default is 0. |
The PV function can be used to calculate the present value of a loan, when the interest rate, payment, and number of periods are known. For example, t
=PV(4.5%/12,5*12,-93.22) // returns 5000.26
In the worksheet shown above, the formula in C10 is:
=PV(C5/C8,C7,C6)
To calculate the present value of an annuity that pays 10,000 per year for 25 years, with an annual interest rate of 7%:
=PV(7%,25,10000) // returns -116,535.832
To return a positive present value, enter the payment as a negative number:
=PV(7%,25,-10000) // returns 116,535.832
To calculate the initial investment required to reach $15,000 in 10 years with an annual interest rate of 5%:
=PV(5%,10,0,15000) // returns -9,208.70
Enter the future value as a negative number to get a positive result:
=PV(5%,10,0,-15000) // returns 9,208.70