Excel 2010 Fórmulas - Parte63
Excel 2010 Fórmulas - Parte63
h If the first payment is made in arrears (after the first period), you use a type of 0 (zero),
which is generally the default.
h If the first payment is made in advance, use a type of 1.
Down payments are not considered regular payments, so they don’t affect which type
argument you specify.
All these functions are related, because they deal with different sides of the same situa-
tion. Many of the arguments are the same from function to function.
The example in this section computes the present value of a series of future receipts, sometimes
called an annuity. You get one payment of $1,200 each year for ten years. The value of those
payments right now is $6,780.27.
=PV(12%,10,1200,0,0)
In other words, if the payer offered you more than $6,800 right now (so he wouldn’t have to
make the payments to you in the future), you would take it. If he offered you less, you would
pass and wait for the regular payments.
The file basic financial formulas.xlsx on the companion CD-ROM contains all
the examples in this section.
You may have noticed that in the preceding formula, the interest rate (12%) appeared out of thin
air. The PV function is usually used to determine how much a specific future amount is worth
today. A specific interest rate is not available in those situations.
There are a lot of opinions on what discount rate you should use, and which one you
choose depends a lot on your personality. Some say that you should use the interest
rate you would get from a bank if you borrowed the money with no collateral. Others
say that you should use the interest rate you would receive if you made a risk-free
investment, like in a U.S. Treasury bill. In this example, I use the rate of return you
would make if you invested the money in the stock market.
By choosing 12% in this example, I’m saying that you can take the $6,780, invest it so that you
make a 12% return, and you’ll be in the same financial position as if you had just waited for the
$1,200 payments. If the payer offers you $7,000, you can invest that and be in a better position.
Now let’s turn the tables and say that you have an obligation to pay someone $1,200 per year for
ten years. That formula looks like this:
=PV(12%,10,–1200,0,0)
Instead of a positive cash flow, this formula shows a negative cash flow. The result, $6,780.27, is
also oppositely signed from the previous result. In both examples, the sum total of the payments
constitutes the entire transaction, so there is no future value. Also, the default value of zero for
the type argument is included. Both the fv argument and the type argument are optional, but
they are included here for clarity. Figure 11-1 shows these examples in a workbook.
For simplicity, the formulas presented in this chapter use literal values for function
arguments. In most cases, you’ll use cell references for the arguments.
For the next example, assume a wealthy relative wants to give you $100,000, but that you can’t
collect it until your 40th birthday. If you are 25 years old now, the value of that future gift would
be $31,524.17 and is computed as follows:
=PV(8%,15,0,100000)
The payment is an inflow (a positive $100,000) that will occur 15 years from now. If you had
some money now, you think you could make 8% investing it. Because there are no payments, the
type argument is irrelevant.
The result of this formula means that if you had $31,524 now and you invested it at 8%, it would
be worth $100,000 in 15 years. See Figure 11-2.
=PV(10%/12,60,200,60000,1)
h You determined that you could make 10% on your money elsewhere, so 10% is the dis-
count rate.
h All the arguments must cover the same time period. Because the $200 payment is made
monthly, all the arguments must be converted to months:
● The rate argument is divided by 12 (for 12 months).
● The nper argument is expressed as 60 (for 60 months; not 5 for 5 years).
h The payment amount and the lump sum amount were laid out in the deal.
h The type argument is 1 because the brother-in-law wants the first payment now (in
advance).
The formula tells us that the value of all those future cash flows is $45,958.83. According to the
terms of this deal and your assumptions, you could make more money investing your $50,000
elsewhere.
You can plug in different values for the arguments until you find a solution that is favor-
able — and then make a counter proposal to your brother-in-law. You can even use
Excel’s Goal Seek feature (Data➜Data Tools➜What-If Analysis➜Goal Seek) to find the
value of an argument that results in your desired present value.
=FV(3%/12,18*12,–50,0,0)