Hello:
Actually if the cashflows are in A1 to E1 for periods
0 through 4 (and use a discount rate of 10%)
-$985 $75 $120 $100 $1,200
The NPV (adjusted) for half period would be:
=NPV(0.1,B1:E1)*(1+0.1)^(0.5)+A1 ($128.94)
This assume the customary situation that you lay out the
initial expenditure at the end of period 0 and that you
inflows occur on average in the middle of each future
period.
This effectively discounts the first $75 for one half period,
the $120 for 1.5 periods, the $100 for 2.5 periods and the
$1,200 for 3.5 periods.
Different from what =FV(0.1,0.5,,-NPV(0.1,A1:E1))
would provide. ($73.51)
The normal NPV would be:
=NPV(0.1,B1:E1)+A1 ($77.10)
Finally, note that the NPV function in a spreadsheet is not the NPV
that finance uses. The NPV function in a spreadsheet is more
like a PV function. Hence the use of only the cash inflows
(b1 to e1) and then just adding the zero period cash flow.
If you are in doubt just try it the old fashion way by
taking the present value of each cash flow then adding
them up.
If you use the NPV including the initial cash flow you will
understate the true NPV.
Getting the IRR for the half year assumptions is a little trickier. The
easiest way is to use the NPV formula above with the half year adjustment,
make the discount rate (.1 in example) a variable and use
Solver or Goal seek to find the rate that makes the NPV zero.
In this case it is about 14.55% verses the normal IRR of 12.37%
So using the half year convention increases both NPV and IRR as
you would expect.
Pieter Vandenberg
(e-mail address removed) wrote:
: apubapu82 wrote:
:> I am building a discounted cash flow model and was wondering if there
:> was a way to incorporate mid-period discounting using the NPV function.
: =FV(rate,0.5,,-NPV(rate,CF0,CF1,...))
: should do the trick. Refer to p.76 ("Timing of Benefits and Cost") of
: the paper at
:
http://www.faa.gov/regulations_policies/policy_guidance/benefit_cost/media/ECONOMIC.pdf
: .
: With normal NPV, both benefits and costs are assumed to occur at
: the end of each period. With midpoint discounting, both benefits and
: costs are assumed to occur at the midpoint of the each period. But
: midpoint discounting can be modeled using the end-period model,
: then shifting the end-period NPV forward half a period. That is the
: purpose of the FV() formula above.