Chapter 15

Working with investment formulas

In this chapter, you will:

  • Understand concepts such as compound, nominal, and effective interest rates

  • Calculate the future value of an investment

  • Learn formulas that enable you to work toward an investment goal

The time value of money concepts introduced in Chapter 14, “Building loan formulas,” applies equally well to investments. The only difference is that you need to reverse the signs of the cash values. That’s because loans generally involve receiving a principal amount (positive cash flow) and paying it back over time (negative cash flow). An investment, on the other hand, involves depositing money into the investment (negative cash flow) and then receiving interest payments (or whatever) in return (positive cash flow).

With this sign change in mind, this chapter takes you through some Excel tools for building investment formulas. You’ll learn about the wonders of compound interest; how to convert between nominal and effective interest rates; how to calculate the future value of an investment; ways to work toward an investment goal by calculating the required interest rate, term, and deposits; and how to build an investment schedule.

Working with interest rates

As I mentioned in Chapter 14, the interest rate is the mechanism that transforms a present value into a future value. (Or, operating as a discount rate, it’s what transforms a future value into a present value.) Therefore, when working with financial formulas, it’s important to know how to work with interest rates and to be comfortable with certain terminology. You’ve already seen (again, in Chapter 14) that it’s crucial for the interest rate, term, and payment to use the same time basis. The next sections show you a few other interest rate techniques you should know.

Understanding compound interest

An interest rate is described as simple if it pays the same amount each period. For example, if you have $1,000 in an investment that pays a simple interest rate of 10% per year, you’ll receive $100 each year.

Suppose, however, that you were able to add the interest payments to the investment. At the end of the first year, you would have $1,100 in the account, which means you would earn $110 in interest (10% of $1,100) the second year. Being able to add interest earned to an investment is called compounding, and the total interest earned (the normal interest plus the extra interest on the reinvested interest—the extra $10, in the example) is called compound interest.

Nominal versus effective interest

Interest can also be compounded within the year. For example, suppose that your $1,000 investment earns 10% compounded semiannually. At the end of the first six months, you receive $50 in interest (5% of the original investment). This $50 is reinvested, and for the second half of the year, you earn 5% of $1,050, or $52.50. Therefore, the total interest earned in the first year is $102.50. In other words, the interest rate appears to actually be 10.25%. So which is the correct interest rate, 10% or 10.25%?

To answer that question, you need to know about the two ways that most interest rates are most often quoted:

  • The nominal rate: This is the annual rate before compounding (the 10% rate, in the example). The nominal rate is always quoted along with the compounding frequency—for example, 10% compounded semiannually.

Image Note

The nominal annual interest rate is often shortened to APR, or the annual percentage rate.

  • The effective rate: This is the annual rate that an investment actually earns in the year after the compounding is applied (the 10.25%, in the example).

In other words, both rates are “correct,” except that, with the nominal rate, you also need to know the compounding frequency.

If you know the nominal rate and the number of compounding periods per year (for example, semiannually means 2 compounding periods per year, and monthly means 12 compounding periods per year), you get the effective rate per period by dividing the nominal rate by the number of periods:

=nominal_rate / npery

Here, npery is the number of compounding periods per year. To convert the nominal annual rate into the effective annual rate, you use the following formula:

=(1 + nominal_rate / npery) ^ npery — 1

Conversely, if you know the effective rate per period, you can derive the nominal rate by multiplying the effective rate by the number of periods:

=effective_rate * npery

To convert the effective annual rate to the nominal annual rate, you use the following formula:

=npery * (effective_rate + 1) ^ (1 / npery) - npery

Fortunately, the next section shows you two functions that can handle the conversion between the nominal and effective annual rates for you.

Converting between the nominal rate and the effective rate

To convert a nominal annual interest rate to the effective annual rate, use the EFFECT() function:

EFFECT(nominal_rate, npery)

nominal_rate

The nominal annual interest rate

npery

The number of compounding periods in the year

For example, the following formula returns the effective annual interest rate for an investment with a nominal annual rate of 10% that compounds semiannually:

=EFFECT(0.1, 2)

Figure 15-1 shows a worksheet that applies the EFFECT() function to a 10% nominal annual rate using various compounding frequencies.

The figure shows an Excel worksheet with cell D3's formula using the EFFECT() function to calculate the effective interest rate given the nominal rate in cell C3 and the compounding periods in cell B3.
FIGURE 15-1 The formulas in column D use the EFFECT() function to convert the nominal rates in column C to effective rates based on the compounding periods in column B.

If you already know the effective annual interest rate and the number of compounding periods, you can convert the rate to the nominal annual interest rate by using the NOMINAL() function:

NOMINAL(effect_rate, npery)

effect_rate

The effective annual interest rate

npery

The number of compounding periods in the year

For example, the following formula returns the nominal annual interest rate for an investment with an effective annual rate of 10.52% that compounds daily:

=NOMINAL(0.1052, 365)

Calculating the future value

Just as the payment is usually the most important value for a loan calculation, the future value is usually the most important value for an investment calculation. After all, the purpose of an investment is to place a sum of money (the present value) in some instrument for a time, after which you end up with some new (and hopefully greater) amount: the future value.

To calculate the future value of an investment, Excel offers the FV() function:

FV(rate, nper[, pmt][, pv][, type])

rate

The fixed rate of interest over the term of the investment.

nper

The number of periods in the term of the investment.

pmt

The amount deposited in the investment each period. (The default is 0.)

pv

The initial deposit. (The default is 0.)

type

The type of deposit. Use 0 (the default) for end-of-period deposits; use 1 for beginning-of-period deposits.

Because both the amount deposited per period (the pmt argument) and the initial deposit (the pv argument) are sums that you pay out, these must be entered as negative values in the FV() function.

The next few sections take you through various investment scenarios using the FV() function.

The future value of a lump sum

In the simplest future value scenario, you invest a lump sum and let it grow according to the specified interest rate and term, without adding deposits along the way. In this case, you use the FV() function with the pmt argument set to 0:

FV(rate, nper, 0, pv, type)

For example, Figure 15-2 shows the future value of $10,000 invested at 5% over 10 years.

The figure shows an Excel worksheet with cell B7's formula using the FV() function to calculate the future value of a lump sum.
FIGURE 15-2 When calculating the future value of an initial lump sum deposit, set the FV() function’s pmt argument to 0.

Image Tip

Excel’s FV() function doesn’t work with continuous compounding. Instead, you need to use a worksheet formula that takes the following general form (where e is the mathematical constant e):

=pv * e ^ (rate * nper)

For example, the following formula calculates the future value of $10,000 invested at 5% over 10 years compounded continuously (and it returns a value of $16,487.21):

=10000 * EXP(0.05 * 10)

The future value of a series of deposits

Another common investment scenario is to make a series of deposits over the term of the investment, without depositing an initial sum. In this case, you use the FV() function with the pv argument set to 0:

FV(rate, nper, pmt, 0, type)

For example, Figure 15-3 shows the future value of $100 invested each month at 5% over 10 years. Notice that the interest rate and term are both converted to monthly amounts because the deposit occurs monthly.

The figure shows an Excel worksheet with cell B7's formula using the FV() function to calculate the future value of a series of deposits.
FIGURE 15-3 When calculating the future value of a series of deposits, set the FV() function’s pv argument to 0.

The future value of a lump sum plus deposits

For best investment results, you should invest an initial amount and then add to it with regular deposits. In this scenario, you need to specify all the FV() function arguments (except type). For example, Figure 15-4 shows the future value of an investment with a $10,000 initial deposit and $100 monthly deposits at 5% over 10 years.

The figure shows an Excel worksheet with cell B7's formula using the FV() function to calculate the future value of a lump sum plus a series of deposits.
FIGURE 15-4 This worksheet uses the full FV() function syntax to calculate the future value of a lump sum plus a series of deposits.

Working toward an investment goal

Instead of just seeing where an investment will end up, it’s often desirable to have a specific monetary goal in mind and then ask yourself, “What will it take to get me there?”

Answering this question means solving for one of the four main future value parameters—interest rate, number of periods, regular deposit, and initial deposit—while holding the other parameters (and, of course, your future value goal) constant. The next four sections take you through this process.

Calculating the required interest rate

Say that you know the future value that you want, when you want it, and the initial deposit and periodic deposits you can afford. What interest rate do you require to meet your goal? You answer this question by using the RATE() function, which you first encountered in Chapter 14. Here’s the syntax for that function from the point of view of an investment:

RATE(nper, pmt, pv, fv[, type][, guess])

nper

The number of deposits over the term of the investment.

pmt

The amount invested with each deposit.

pv

The initial investment.

fv

The future value of the investment.

type

The type of deposit. Use 0 (the default) for end-of-period deposits; use 1 for beginning-of-period deposits.

guess

A percentage value that Excel uses as a starting point for calculating the interest rate. (The default is 10%.)

For example, if you need $100,000 10 years from now, you are starting with $10,000, and you can deposit $500 per month. What interest rate is required to meet your goal? Figure 15-5 shows a worksheet that comes up with the answer: 6%.

The figure shows an Excel worksheet with cell B7's formula using the RATE() function to calculate the required interest rate to generate a future value given a term, regular deposits, and an initial deposit.
FIGURE 15-5 Use the RATE() function to work out the interest rate required to reach a future value, given a fixed term, a periodic deposit, and an initial deposit.

Calculating the required number of periods

Given your investment goal, if you have an initial deposit and an amount that you can afford to deposit periodically, how long will it take to reach your goal at the prevailing market interest rate? You answer this question by using the NPER() function (which was introduced in Chapter 14). Here’s the NPER() syntax from the point of view of an investment:

NPER(rate, pmt, pv, fv[, type])

rate

The fixed rate of interest over the term of the investment.

pmt

The amount invested with each deposit.

pv

The initial investment.

fv

The future value of the investment.

type

The type of deposit. Use 0 (the default) for end-of-period deposits; use 1 for beginning-of-period deposits.

For example, suppose that you want to retire with $1,000,000. You have $50,000 to invest, you can afford to deposit $1,000 per month, and you expect to earn 5% interest. How long will it take to reach your goal? The worksheet in Figure 15-6 answers this question: 349.4 months, or 29.1 years.

The figure shows an Excel worksheet with cell B7's formula using the NPER() function to calculate the required number of periods to generate a future value given an interest rate, regular deposits, and an initial deposit.
FIGURE 15-6 Use the NPER() function to calculate how long it will take to reach a future value, given a fixed interest rate, a periodic deposit, and an initial deposit.

Calculating the required regular deposit

Suppose that you want to reach your future value goal by a certain date and that you have an initial amount to invest. Given current interest rates, how much extra do you have to periodically deposit into the investment to achieve your goal? The answer here lies in the PMT() function from Chapter 14. Here are the PMT() function details from the point of view of an investment:

PMT(rate, nper, pv, fv[, type])

rate

The fixed rate of interest over the term of the investment.

nper

The number of deposits over the term of the investment.

pv

The initial investment.

fv

The future value of the investment.

type

The type of deposit. Use 0 (the default) for end-of-period deposits; use 1 for beginning-of-period deposits.

For example, suppose you want to end up with $50,000 in 15 years to finance your child’s college education. If you have no initial deposit and you expect to get 7.5% interest over the term of the investment, how much do you need to deposit each month to reach your target? Figure 15-7 shows a worksheet that calculates the result using PMT(): $151.01 per month.

The figure shows an Excel worksheet with cell B7's formula using the PMT() function to calculate the required regular deposit to generate a future value given an interest rate, term, and initial deposit.
FIGURE 15-7 Use the PMT() function to derive how much you need to deposit periodically to reach a future value, given a fixed interest rate, a number of deposits, and an initial deposit.

Calculating the required initial deposit

For the final standard future value calculation, suppose that you know when you want to reach your goal, how much you can deposit each period, and how much the interest rate will be. What, then, do you need to deposit initially to achieve your future value target? To find the answer, you use the PV() function. Here are the PV() function details from the point of view of an investment:

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

rate

The fixed rate of interest over the term of the investment.

nper

The number of deposits over the term of the investment.

pmt

The amount invested with each deposit.

fv

The future value of the investment.

type

The type of deposit. Use 0 (the default) for end-of-period deposits; use 1 for beginning-of-period deposits.

For example, suppose your goal is to end up with $100,000 in three years to purchase new equipment. If you expect to earn 6% interest and can deposit $2,000 monthly, what does your initial deposit have to be to make your goal? The worksheet in Figure 15-8 uses PV() to calculate the answer: $17,822.46.

The figure shows an Excel worksheet with cell B7's formula using the PV() function to calculate the required initial deposit to generate a future value given an interest rate, term, and regular deposit.
FIGURE 15-8 Use the PV() function to find out how much you need to deposit initially to reach a future value, given a fixed interest rate, number of deposits, and periodic deposit.

Calculating the future value with varying interest rates

All the future value examples that you’ve worked with so far have assumed that the interest rate remained constant over the term of the investment. This will always be true for fixed-rate investments, but for other investments, such as mutual funds, stocks, and bonds, using a fixed rate of interest is, at best, a guess about what the average rate will be over the term.

For investments that offer a variable rate over the term, or when the rate fluctuates over the term, Excel offers the FVSCHEDULE() function, which returns the future value of some initial amount, given a schedule of interest rates:

FVSCHEDULE(principal, schedule)

principal

The initial investment

schedule

A range or an array containing the interest rates

For example, the following formula returns the future value of an initial $10,000 deposit that makes 5%, 6%, and 7% over three years:

=FVSCHEDULE(10000, {0.05, 0.06, 0.07})

Similarly, Figure 15-9 shows a worksheet that calculates the future value of an initial deposit of $100,000 into an investment that earns 5%, 5.5%, 6%, 7%, and 6% over five years.

The figure shows an Excel worksheet with cell B9's formula using the FVSCHEDULE() function to calculate the future value of an initial deposit given a series of varying interest rates.
FIGURE 15-9 Use the FVSCHEDULE() function to return the future value of an initial deposit in an investment that earns varying rates of interest.

Image Note

If you want to know the average rate earned on the investment, use the RATE() function, where nper is the number of values in the interest rate schedule, pmt is 0, pv is the initial deposit, and fv is the negative of the FVSCHEDULE() result. Here’s the general syntax:

RATE(ROWS(schedule), 0, principal, -FVSCHEDULE(principal, schedule))
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.119.105.239