Chapter 1

Building basic formulas

In this chapter, you will:

  • Learn the basics of building formulas in Excel.

  • Understand operator precedence and how it affects your formula results.

  • Learn how to control worksheet calculations.

  • Learn how to copy and move formulas.

  • Learn how to work with range names in formulas.

  • Build formulas that contain links to cells or ranges in other worksheets and workbooks.

A worksheet is merely a lifeless collection of numbers and text until you define a relationship among the various entries. You do this by creating formulas that perform calculations and produce results. This chapter takes you through some formula basics, including constructing simple arithmetic and text formulas, understanding the all-important topic of operator precedence, copying and moving worksheet formulas, and making formulas easier to build and read by taking advantage of range names.

Understanding formula basics

Most worksheets are created to provide answers to specific questions: What is the company’s profit? Are expenses over or under budget, and by how much? What is the future value of an investment? How big will an employee’s bonus be this year? You can answer these questions, and an infinite number of others, by using Excel formulas.

All Excel formulas have the same general structure: an equal sign (=) followed by one or more operands—which can be values, cell references, ranges, range names, or function names—separated by one or more operators—which are symbols that combine the operands in some way, such as the plus sign (+) and the greater-than sign (>).

Image Note

Excel doesn’t object if you use spaces between operators and operands in your formulas. This is actually a good practice to get into because separating the elements of a formula in this way can make them much easier to read. Note, too, that Excel accepts line breaks in formulas. This is handy if you have a very long formula because it enables you to “break up” the formula so that it appears on multiple lines. To create a line break within a formula, select Alt+Enter.

Formula limits in Excel 2019

It’s a good idea to know the limits Excel sets on various aspects of formulas and worksheet models, even though it’s unlikely that you’ll ever bump up against these limits. Formula limits that were expanded in Excel 2007 remain the same in Excel 2019. So, in the unlikely event that you’re coming to Excel 2019 from Excel 2003 or earlier, Table 1-1 shows you the updated limits.

TABLE 1-1 Formula-related limits in Excel 2019

Object

Excel 2019 Maximum

Excel 2003 Maximum

Columns

16,384

1,024

Rows

1,048,576

65,536

Formula length (characters)

8,192

1,024

Function arguments

255

30

Formula nesting levels

64

7

Array references (rows or columns)

Unlimited

65,335

PivotTable columns

16,384

255

PivotTable rows

1,048,576

65,536

PivotTable fields

16,384

255

Unique PivotField items

1,048,576

32,768

Formula nesting levels refers to the number of expressions that are nested within other expressions using parentheses; seeControlling the order of precedence.”

Entering and editing formulas

Entering a new formula into a worksheet appears to be a straightforward process:

  1. Select the cell in which you want to enter the formula.

  2. Type an equal sign (=) to tell Excel that you’re entering a formula.

  3. Type the formula’s operands and operators.

  4. Select Enter to confirm the formula.

However, Excel has three different input modes that determine how it interprets certain keystrokes and mouse actions:

  • When you type the equal sign to begin the formula, Excel goes into Enter mode, which is the mode you use to enter text (such as the formula’s operands and operators).

  • If you select any keyboard navigation key (such as Page Up, Page Down, or any arrow key), or if you select any other cell in the worksheet, Excel enters Point mode. This is the mode you use to select a cell or range as a formula operand. When you’re in Point mode, you can use any of the standard range-selection techniques. Note that Excel returns to Enter mode as soon as you type an operator or any character.

  • If you select F2, Excel enters Edit mode, which is the mode you use to make changes to the formula. For example, when you’re in Edit mode, you can use the left and right arrow keys to move the cursor to another part of the formula for deleting or inserting characters. You can also enter Edit mode by selecting anywhere within the formula. Select F2 to return to Enter mode.

Image Tip

You can tell which mode Excel is currently in by looking at the status bar at the bottom of the Excel window. On the left side, you’ll see “Enter,” “Point,” or “Edit.”

After you’ve entered a formula, you might need to return to it to make changes. Excel gives you three ways to enter Edit mode and make changes to a formula in the selected cell:

  • Select the F2 key.

  • Double-click the cell.

  • Use the formula bar (the large text box that appears just above the column headers) to position the cursor anywhere inside the formula text.

Excel divides formulas into four groups: arithmetic, comparison, text, and reference. Each group has its own set of operators, and you use each group in different ways. In the next few sections, I show you how to use each type of formula.

Using arithmetic formulas

Arithmetic formulas are by far the most common type of formula. They combine numbers, cell addresses, and function results with mathematical operators to perform calculations. Table 1-2 summarizes the mathematical operators used in arithmetic formulas.

TABLE 1-2 The arithmetic operators

Operator

Name

Example

Result

+

Addition

=10+5

15

-

Subtraction

=10-5

5

-

Negation

=-10

–10

*

Multiplication

=10*5

50

/

Division

=10/5

2

%

Percentage

=10%

0.1

^

Exponentiation

=10^5

100000

Most of these operators are straightforward, but the exponentiation operator might require further explanation. The formula =x^y means that the value x is raised to the power y. For example, the formula =3^2 produces the result 9 (that is, 3*3=9). Similarly, the formula =2^4 produces 16 (that is, 2*2*2*2=16).

Using comparison formulas

A comparison formula is a statement that compares two or more numbers, text strings, cell contents, or function results. If the statement is true, the result of the formula is given the logical value TRUE (which is equivalent to any nonzero value). If the statement is false, the formula returns the logical value FALSE (which is equivalent to zero). Table 1-3 summarizes the operators you can use in comparison formulas.

TABLE 1-3 Comparison formula operators

Operator

Name

Example

Result

=

Equal to

=10=5

FALSE

>

Greater than

=10>5

TRUE

<

Less than

=10<5

FALSE

>=

Greater than or equal to

="a">="b"

FALSE

<=

Less than or equal to

="a"<="b"

TRUE

<>

Not equal to

="a"<>"b"

TRUE

Comparison formulas have many uses. For example, you can determine whether to pay a salesperson a bonus by using a comparison formula to compare actual sales with a predetermined quota. If the sales are greater than the quota, the rep is awarded the bonus. You also can monitor credit collection. For example, if the amount a customer owes is more than 150 days past due, you might send the invoice to a collection agency.

Using text formulas

The two types of formulas that I discussed in the previous sections—arithmetic formulas and comparison formulas—calculate or make comparisons and return values. A text formula, on the other hand, is a formula that returns text. Text formulas use the ampersand (&) operator to work with text cells, text strings enclosed in quotation marks, and text function results.

One way to use text formulas is to concatenate text strings. For example, if you enter the formula ="soft"&"ware" into a cell, Excel displays software. Note that the quotation marks and the ampersand aren’t shown in the result. You also can use & to combine cells that contain text. For example, if A1 contains the text Ben and A2 contains Jerry, entering the formula =A1&" and "&A2 returns Ben and Jerry.

Using reference formulas

The reference operators combine two cell references or ranges to create a single joint reference. Table 1-4 summarizes the operators you can use in reference formulas.

TABLE 1-4 Reference formula operators

Operator

Name

Description

: (colon)

Range

Produces a range from two cell references (for example, A1:C5).

(space)

Intersection

Produces a range that is the intersection of two ranges (for example, A1:C5 B2:E8).

, (comma)

Union

Produces a range that is the union of two ranges (for example, A1:C5,B2:E8).

Understanding operator precedence

You’ll often use simple formulas that contain just two values and a single operator. In practice, however, most formulas you use will have a number of values and operators. In more complex expressions, the order in which the calculations are performed becomes crucial. For example, consider the formula =3+5^2. If you calculate from left to right, the answer you get is 64 (3+5 equals 8, and 8^2 equals 64). However, if you perform the exponentiation first and then the addition, the result is 28 (5^2 equals 25, and 3+25 equals 28). As this example shows, a single formula can produce multiple answers, depending on the order in which you perform the calculations.

To control this problem, Excel evaluates a formula according to a predefined order of precedence. This order of precedence enables Excel to calculate a formula unambiguously by determining which part of the formula it calculates first, which part second, and so on.

The order of precedence

Excel’s order of precedence is determined by the various formula operators outlined earlier. Table 1-5 summarizes the complete order of precedence used by Excel.

TABLE 1-5 The Excel order of precedence

Operator

Operation

Order of Precedence

:

Range

1st

<space>

Intersection

2nd

,

Union

3rd

-

Negation

4th

%

Percentage

5th

^

Exponentiation

6th

* and /

Multiplication and division

7th

+ and -

Addition and subtraction

8th

&

Concatenation

9th

= < > <= >= <>

Comparison

10th

From this table, you can see that Excel performs exponentiation before addition. Therefore, the correct answer for the formula =3+5^2, given previously, is 28. Notice also that some operators in Table 1-5 have the same order of precedence (for example, multiplication and division). This means that it usually doesn’t matter in which order these operators are evaluated. For example, consider the formula =5*10/2. If you perform the multiplication first, the answer you get is 25 (5*10 equals 50, and 50/2 equals 25). If you perform the division first, you also get an answer of 25 (10/2 equals 5, and 5*5 equals 25). By convention, Excel evaluates operators with the same order of precedence from left to right, so you should assume that’s how your formulas will be evaluated.

Controlling the order of precedence

Sometimes you want to override the order of precedence. For example, suppose that you want to create a formula that calculates the pre-tax cost of an item. If you bought something for $10.65, including 7% sales tax, and you want to find the cost of the item minus the tax, you use the formula =10.65/1.07, which gives you the correct answer, $9.95. In general, the formula is the total cost divided by 1 plus the tax rate.

Figure 1-1 shows how you might implement such a formula. Cell B5 displays the Total Cost variable, and cell B6 displays the Tax Rate variable. Given these parameters, your first instinct might be to use the formula =B5/1+B6 to calculate the original cost. This formula is shown (as text) in cell E9, and the result is given in cell D9. As you can see, this answer is incorrect. What happened? Well, according to the rules of precedence, Excel performs division before addition, so the value in B5 first is divided by 1 and then is added to the value in B6. To get the correct answer, you must override the order of precedence so that the addition 1+B6 is performed first. You do this by surrounding that part of the formula with parentheses, as shown in cell E10. When this is done, you get the correct answer (cell D10).

The figure shows an Excel worksheet with input cells for the total cost and tax rate. One formula does not use parentheses to control the order of precedence so it produces an incorrect result; another formula does use parentheses.
FIGURE 1-1 Use parentheses to control the order of precedence in your formulas.

Image Tip

In Figure 1-1, how did I convince Excel to show the formulas in cells E9 and E10 as text? I used Excel’s FORMULATEXT() function (see “Displaying a cell’s formula by using FORMULATEXT(),” later in this chapter).

In general, you can use parentheses to control the order that Excel uses to calculate formulas. Terms inside parentheses are always calculated first; terms outside parentheses are calculated sequentially (according to the order of precedence).

Image Tip

Another good use for parentheses is raising a number to a fractional power. For example, if you want to take the nth root of a number, you use the following general formula:

=number ^ (1 / n)

For example, to take the cube root of the value in cell A1, use this:

=A1 ^ (1 / 3)

To gain even more control over your formulas, you can place parentheses inside one another; this is called nesting parentheses. Excel always evaluates the innermost set of parentheses first. Here are a few sample formulas:

Formula

1st Step

2nd Step

3rd Step

Result

3^(15/5)*2-5

3^3*2-5

27*2-5

54-5

49

3^((15/5)*2-5)

3^(3*2-5)

3^(6-5)

3^1

3

3^(15/(5*2-5))

3^(15/(10-5))

3^(15/5)

3^3

27

Notice that the order of precedence rules also hold within parentheses. For example, in the expression (5*2-5), the term 5*2 is calculated before 5 is subtracted.

Using parentheses to determine the order of calculations enables you to gain full control over your Excel formulas. This way, you can make sure that the answer given by a formula is the one you want.

Image Caution

One of the most common mistakes when using parentheses in formulas is to forget to close a parenthetic term with a right parenthesis. In such a case, Excel generates an error message (and offers a solution to the problem). To make sure that you’ve closed each parenthetic term, count all the left and right parentheses. If these totals don’t match, you know you’ve left out a parenthesis.

Controlling worksheet calculation

Excel always calculates a formula when you confirm its entry, and the program normally recalculates existing formulas automatically whenever their data changes. This behavior is fine for small worksheets, but it can slow you down if you have a complex model that takes several seconds or even several minutes to recalculate. To turn off this automatic recalculation, Excel gives you two ways to get started:

  • Select Formulas > Calculation Options.

  • Select File > Options > Formulas.

Either way, you’re presented with three calculation options:

  • Automatic: This is the default calculation mode, and it means that Excel recalculates formulas as soon as you enter them and as soon as the data for a formula changes.

  • Automatic Except for Data Tables: In this calculation mode, Excel recalculates all formulas automatically, except for those associated with data tables (which I discuss in Chapter 19, “Using Excel’s business modeling tools”). This is a good choice if your worksheet includes one or more massive data tables that are slowing down the recalculation.

  • Manual: Select this mode to force Excel not to recalculate any formulas until either you manually recalculate or you save the workbook. If you’re in the Excel Options dialog box, you can tell Excel not to recalculate when you save the workbook by deselecting the Recalculate Workbook Before Saving check box.

With manual calculation turned on, you see “Calculate” in the status bar whenever your worksheet data changes and your formula results need to be updated. When you want to recalculate, first display the Formulas tab. In the Calculation group, you have two choices:

  • Select Calculate Now (or select F9) to recalculate every open worksheet.

  • Select Calculate Sheet (or select Shift+F9) to recalculate only the active worksheet.

Image Tip

If you want Excel to recalculate every formula—even those that are unchanged—in all open worksheets, select Ctrl+Alt+Shift+F9.

If you want to recalculate only part of your worksheet while manual calculation is turned on, you have two options:

  • To recalculate a single formula, select the cell containing the formula, place the cursor inside the formula bar, and then confirm the cell (by selecting Enter or by selecting the Enter button).

  • To recalculate a range, select the range; select Home > Find & Select > Replace (or select Ctrl+H); enter an equal sign (=) in both the Find What and Replace With boxes; finally, select Replace All. Excel “replaces” the equal sign in each formula with another equal sign. This doesn’t actually change any formula, but it forces Excel to recalculate each formula.

Image Tip

Excel supports multithreaded calculation where, for each processor—or, more likely, each processor core—Excel sets up a thread, which is a separate process of execution. Excel can then use each available thread to process multiple calculations concurrently. For a worksheet with multiple independent formulas, this can dramatically speed calculations. Multithreaded calculation is turned on by default, but to make sure, select File > Options > Advanced, and then in the Formulas section ensure that the Enable Multi-Threaded Calculation check box is selected.

Copying and moving formulas

You copy and move ranges that contain formulas the same way you copy and move regular ranges, but the results aren’t always straightforward.

For example, Figure 1-2 shows a list of expense data for a company. The formula in cell C11 uses SUM(C6:C10) to total the January expenses. The idea behind this worksheet is to calculate a new expense budget number for 2019 as a percentage increase of the actual 2018 total. Cell C3 displays the INCREASE variable (in this case, the increase being used is 3%). The formula that calculates the 2019 BUDGET number (cell C13 for the month of January) multiplies the 2018 TOTAL by the INCREASE (that is, =C11 * C3).

The figure shows an Excel worksheet with expense numbers for January, February, and March of 2018. The selected cell calculates the sum of expenses for January 2018.
FIGURE 1-2 Here is a budget expenses worksheet with two calculations for the January numbers: the total (cell C11) and a percentage increase for next year (cell C13).

The next step is to calculate the 2018 TOTAL expenses and the 2019 BUDGET figure for February. You could just type each new formula, but you can copy a cell much more quickly. Figure 1-3 shows the results when you copy the contents of cell C11 into cell D11. As you can see, the formula in D11 is =SUM(D6:D10), which means that Excel adjusted the range in the formula’s function so that only the February expenses are totaled. How did Excel know to do this? To answer this question, you need to know about Excel’s relative reference format, which I discuss in the next section.

The figure shows an Excel worksheet where the formula that summed the expenses for January 2018 has been copied to the expenses for February 2018, and Excel has automatically adjusted the range used in the formula.
FIGURE 1-3 When you copy the January 2018 TOTAL formula to February, Excel automatically adjusts the range reference.

Understanding relative reference format

When you use a cell reference in a formula, Excel looks at the cell address relative to the location of the formula. For example, suppose that you have the formula =A1 * 2 in cell A3. To Excel, this formula says, “Multiply the contents of the cell two rows above this one by 2.” This is called the relative reference format, and it’s the default format for Excel. This means that if you copy this formula to cell A4, the relative reference is still “Multiply the contents of the cell two rows above this one by 2,” but the formula changes to =A2 * 2 because A2 is two rows above A4.

Figure 1-4 shows why this format is useful. You had only to copy the formula in cell C11 to cell D11 and, thanks to relative referencing, everything came out perfectly. To get the expense total for March, you’d just have to paste the same formula into cell E11. You’ll find that this way of handling copy operations will save you incredible amounts of time when you’re building worksheet models.

The figure shows an Excel worksheet where the formula that calculates the expenses for January 2019 has been copied to the expenses for February 2019, and the result of the new formula is 0.
FIGURE 1-4 Copying the January 2019 BUDGET formula to February creates a problem.

However, you need to exercise some care when copying or moving formulas. Let’s see what happens if you return to the budget expense worksheet and try copying the 2019 BUDGET formula in cell C13 to cell D13. Figure 1-4 shows that the result is 0!

What happened? The formula bar shows the problem: The new formula is =D11 * D3. Cell D11 is the February 2018 TOTAL, and that’s fine, but instead of the INCREASE cell (C3), the formula refers to a blank cell (D3). Excel treats blank cells as 0, so the formula result is 0. The problem is the relative reference format. When the formula was copied, Excel assumed that the new formula should refer to cell D3. To see how you can correct this problem, you need to learn about another format, the absolute reference format, which I discuss in the next section.

Image Note

The relative reference format problem doesn’t occur when you move a formula. When you move a formula, Excel assumes that you want to keep the same cell references.

Understanding absolute reference format

When you refer to a cell in a formula using the absolute reference format, Excel uses the physical address of the cell. You tell the program that you want to use an absolute reference by placing dollar signs ($) before the row and column of the cell address. To return to the example in the preceding section, Excel interprets the formula =$A$1 * 2 as “Multiply the contents of cell A1 by 2.” No matter where you copy or move this formula, the cell reference doesn’t change. The cell address is said to be anchored.

To fix the budget expense worksheet, you need to anchor the INCREASE variable. To do this, you first change the January 2016 BUDGET formula in cell C13 to read =C11 * $C$3. After making this change, copying the formula to the February 2019 BUDGET column gives the new formula =D11 * $C$3, which produces the correct result.

Image Caution

Most range names refer to absolute cell references. This means that when you copy a formula that uses a range name, the copied formula will use the same range name as the original. This might produce errors in your worksheet.

You also should know that you can enter a cell reference using a mixed-reference format. In this format, you anchor either the cell’s row (by placing the dollar sign in front of the row address only—for example, B$6) or its column (by placing the dollar sign in front of the column address only—for example, $B6).

Image Tip

You can quickly change the reference format of a cell address by using the F4 key. When editing a formula, place the cursor to the left of the cell address (or between the row and column values) and then keep selecting F4. Excel cycles through the various formats. When you see the format you want, select Enter. If you want to apply the new reference format to multiple cell addresses, select the addresses, select F4 until you get the format you want, and select Enter.

Copying a formula without adjusting relative references

If you need to copy a formula but don’t want the formula’s relative references to change, follow these steps:

  1. Select the cell that contains the formula you want to copy.

  2. Place the cursor inside the formula bar.

  3. Use the mouse or keyboard to select the entire formula.

  4. Copy the selected formula.

  5. Select Esc to deactivate the formula bar.

  6. Select the cell in which you want the copy of the formula to appear.

  7. Paste the formula.

Image Note

Here are two other methods you can use to copy a formula without adjusting its relative cell references:

  • To copy a formula from the cell above, select the lower cell and select Ctrl+’ (apostrophe).

  • Activate the formula bar and type an apostrophe (’) at the beginning of the formula (that is, to the left of the equal sign) to convert it to text. Select Enter to confirm the edit, copy the cell, and then paste it in the desired location. Then delete the apostrophe from both the source and destination cells to convert them back to formulas.

Displaying worksheet formulas

By default, Excel displays in a cell the results of the cell’s formula instead of the formula itself. If you need to see a formula, you can select the formula’s cell and look at the formula bar. However, sometimes you’ll want to see all the formulas in a worksheet (such as when you’re troubleshooting your work).

Displaying all worksheet formulas

To display all the formulas in a worksheet, select Formulas > Show Formulas.

Image Tip

You can also select Ctrl+` (backquote) to toggle a worksheet between values and formulas.

Displaying a cell’s formula by using FORMULATEXT()

In some cases, rather than showing all the formulas in a sheet, you might prefer to show the formulas in only a cell or two. For example, if you’re presenting a worksheet to other people, that sheet might have some formulas you want to show, but it might also have one or more proprietary formulas that you don’t want your audience to see. In such a case, you can display individual cell formulas by using the FORMULATEXT() function:

FORMULATEXT(cell)

cell

The address of the cell that contains the formula you want to show

For example, the following formula displays the formula text from cell D9:

=FORMULATEXT(D9)

Converting a formula to a value

If a cell contains a formula where the value will never change, you can convert the formula to that value. This speeds large worksheet recalculations and frees memory for your worksheet because values use much less memory than formulas do. For example, you might have formulas in part of your worksheet that use values from a previous fiscal year. Because these numbers aren’t likely to change, you can safely convert the formulas to their values. To do this, follow these steps:

  1. Select the cell containing the formula you want to convert.

  2. Select F2 to activate in-cell editing. (You can also usually double-click the cell to open it for editing. If this doesn’t work for you, select File > Options > Advanced, and then select the Allow Editing Directly In Cells check box.)

  3. Select F9. The formula changes to its value.

  4. Select Enter or select the Enter button. Excel changes the cell to the value.

You’ll often need to use the result of a formula in several places. If a formula is in cell C5, for example, you can display its result in other cells by entering =C5 in each of the cells. This is the best method if you think the formula result might change because, if it does, Excel updates the other cells automatically. However, if you’re sure that the result won’t change, you can copy only the value of the formula into the other cells. Use the following procedure to do this:

  1. Select the cell that contains the formula.

  2. Copy the cell.

  3. Select the cell or cells to which you want to copy the value.

  4. Select Home, open the Paste list, and then select Paste Values. Excel pastes the cell’s value to each cell you selected.

Another method is to copy the cell, paste it into the destination, open the Paste Options list, and then select Values Only.

Image Caution

If your worksheet is set to manual calculation (select Formulas > Calculations Options > Manual), make sure that you update your formulas (by selecting F9) before copying the values of your formulas.

Working with range names in formulas

You probably use range names often in your formulas. After all, a cell that contains the formula =Sales - Expenses is much more comprehensible than one that contains the more cryptic formula =F12 - F3. The next few sections show you some techniques that make it easier to use range names in formulas.

Pasting a name into a formula

One way to enter a range name in a formula is to type the name in the formula bar. But what if you can’t remember the name? Or what if the name is long, and you’ve got a deadline looming? For these kinds of situations, Excel has several features that enable you to select the name you want from a list and paste it right into the formula. Start your formula, and when you get to the spot where you want the name to appear, use any of the following techniques:

  • Select Formulas > Use in Formula and then select the name in the list that appears (see Figure 1-5).

    The figure shows an Excel worksheet showing the Formulas tab with the Use In Formula list displayed and the mouse pointer hovering over the February item.
    FIGURE 1-5 Drop down the Use In Formula list and then select the range name you want to insert into your formula.
  • Select Formulas > Use in Formula > Paste Names (or select F3) to display the Paste Name dialog box, select the range name you want to use, and then select OK.

  • Type the first letter or two of the range name to display a list of names and functions that start with those letters, select the name you want, and then select Tab.

Applying names to formulas

If you’ve been using ranges in your formulas and you name those ranges later, Excel doesn’t automatically apply the new names to the formulas. Instead of substituting the appropriate names by hand, you can get Excel to do the hard work for you. Follow these steps to apply the new range names to your existing formulas:

  1. Select the range in which you want to apply the names or select a single cell if you want to apply the names to the entire worksheet.

  2. Select Formulas > Define Name > Apply Names. Excel displays the Apply Names dialog box, shown in Figure 1-6.

    The figure shows the Apply Names dialog box, which includes a list of range names that have been defined in the current workbook.
    FIGURE 1-6 Use the Apply Names dialog box to select the names you want to apply to your formula ranges.
  3. In the Apply Names list, choose the name or names, you want applied from this list.

  4. Select the Ignore Relative/Absolute check box to ignore relative and absolute references when applying names. (See the next section for more information on this option.)

  5. Select the Use Row And Column Names check box to tell Excel whether to use the worksheet’s row and column names when applying names. If you select this check box, you also can select the Options button to see more choices. (See the section “Using row and column names when applying names,” later in this chapter, for details.)

  6. Select OK to apply the names.

Ignoring relative and absolute references when applying names

If you deselect the Ignore Relative/Absolute option in the Apply Names dialog box, Excel replaces relative range references only with names that refer to relative references, and it replaces absolute range references only with names that refer to absolute references. If you leave this option selected, Excel ignores relative and absolute reference formats when applying names to a formula.

For example, suppose that you have a formula such as =SUM(A1:A10) and a range named Sales that refers to $A$1:$A$10. With the Ignore Relative/Absolute option deselected, Excel won’t apply the name Sales to the range in the formula; Sales refers to an absolute range, and the formula contains a relative range. Unless you think you’ll be moving your formulas around, you should leave the Ignore Relative/Absolute option selected.

Using row and column names when applying names

For extra clarity in your formulas, leave the Use Row And Column Names check box selected in the Apply Names dialog box. This option tells Excel to rename all cell references that can be described as the intersection of a named row and a named column. In Figure 1-7, for example, the range C6:C10 is named January, and the range C7:E7 is named Rent. This means that cell C7—the intersection of these two ranges—can be referenced as January Rent.

The figure shows an Excel worksheet with cell F7 selected and the formula bar displaying the formula =C7+D7+E7.
FIGURE 1-7 Before range names are applied to the formulas, cell F7 (Total Rent) contains the formula =C7+D7+E7.

As shown in Figure 1-7, the Total for the Rent row (cell F7) currently contains the formula =C7+D7+E7. If you applied range names to this worksheet and selected the Use Row And Column Names option, you’d think this formula would be changed to this:

=January Rent + February Rent + March Rent

If you try this, however, you’ll get a slightly different formula, as shown in Figure 1-8.

The figure shows an Excel worksheet with cell F7 selected and the formula bar displaying the formula =January+February+March.
FIGURE 1-8 After range names are applied, the Total Rent cell contains the formula =January+ February+March.

That is because when Excel is applying names, it omits the row name if the formula is in the same row. (It also omits the column name if the formula is in the same column.) In cell F7, for example, Excel omits Rent in each term because F7 is in the Rent row.

Omitting row headings isn’t a problem in a small model, but it can be confusing in a large worksheet, where you might not be able to see the names of the rows. Therefore, if you’re applying names to a large worksheet, you’ll probably prefer to include the row names when applying names.

Selecting the Options button in the Apply Names dialog box displays the expanded dialog box shown in Figure 1-9. This includes extra options that enable you to include column (and row) headings:

  • Omit Column Name If Same Column: Clear this check box to include column names when applying names.

  • Omit Row Name If Same Row: Clear this check box to include row names.

  • Name Order: Use these options (Row Column or Column Row) to select the order of names in the reference.

The figure shows the expanded version of the Apply Names dialog box, which includes check boxes for omitting the column and row names.
FIGURE 1-9 The expanded Apply Names dialog box.

Naming formulas

You can define names for often-used formulas. The formula doesn’t physically have to appear in a cell. This not only saves memory but often makes your worksheets easier to read. Follow these steps to name a formula:

  1. Select Formulas > Define Name to display the New Name dialog box.

  2. Enter the name you want to use for the formula in the Name text box.

  3. In the Refers To box, enter the formula exactly as you would if you were entering it in a worksheet.

  4. Select OK.

Now you can enter the formula name in your worksheet cells (instead of the formula itself). For example, the following is the formula for the volume of a sphere (r is the radius of the sphere):

4πr3/3

So, assuming that you have a cell named Radius somewhere in the workbook, you could create a formula named, say, SphereVolume, and make the following entry in the Refers To box of the New Name dialog box (where PI() is the Excel worksheet function that returns the value of pi):

=4 * PI() * Radius ^ 3 / 3

Working with links in formulas

If you have data in one workbook that you want to use in another, you can set up a link between the two workbooks. This action enables your formulas to use references to cells or ranges in the other workbook. When the other data changes, Excel automatically updates the link.

For example, Figure 1-10 shows two linked workbooks. The Budget Summary sheet in the 2019 Budget—Summary workbook includes data from the Details worksheet in the 2019 Budget workbook. Specifically, the formula shown for cell B2 in 2019 Budget—Summary contains an external reference to cell R7 in the Details worksheet of 2019 Budget. If the value in R7 changes, Excel immediately updates the 2019 Budget—Summary workbook.

The figure shows two Excel workbooks. The top workbook’s selected cell contains a formula that references cell R7 in the bottom workbook.
FIGURE 1-10 These two workbooks are linked because the formula in cell B2 of the 2019 Budget—Summary workbook references cell R7 in the 2019 Budget workbook.

Image Note

The workbook that contains the external reference is called the dependent workbook (or the client workbook). The workbook that contains the original data is called the source workbook (or the server workbook).

Understanding external references

There’s no big mystery behind external reference links. You set up links by including an external reference to a cell or range in another workbook (or in another worksheet from the same workbook). To get the external reference in the example shown in Figure 1-10, I entered an equal sign in cell B2 of the Budget Summary worksheet, and then I selected cell R7 in the Details worksheet.

You just need to be comfortable with the structure of an external reference. Here’s the syntax:

'path[workbookname]sheetname'!reference

path

The drive and directory in which the workbook is located, which can be a local path or a network path; alternatively, enter the URL if the workbook is on OneDrive. You need to include the path only when the workbook is closed.

workbookname

The name of the workbook, including an extension. Always enclose the workbook name in square brackets ([ ]). You can omit workbookname if you’re referencing a cell or range in another sheet of the same workbook.

sheetname

The name of the worksheet’s tab. You can omit sheetname if reference is a defined name in the same workbook.

reference

A cell or range reference, or a defined name.

For example, if you close the 2019 Budget workbook, Excel automatically changes the external reference shown in Figure 1-10 to this (depending on the actual path of the file):

='C:UsersPaulDocuments[2019 Budget.xlsx]Details'!$R$7

Image Note

You need the single quotation marks around the path, workbook name, and sheet name only if the workbook is closed or if the path, workbook, or sheet name contains spaces. If in doubt, include the single quotation marks anyway; Excel happily ignores them if they’re not required.

Updating links

The purpose of a link is to avoid duplicating formulas and data in multiple worksheets. If one workbook contains the information you need, you can use a link to reference the data without re-creating it in another workbook.

To be useful, however, the data in the dependent workbook should always reflect what actually is in the source workbook. You can make sure of this by updating the link, as explained here:

  • If both the source and the dependent workbooks are open, Excel automatically updates the link whenever the data in the source file changes.

  • If the source workbook is open when you open the dependent workbook, Excel automatically updates the links again.

  • If the source workbook is closed when you open the dependent workbook, Excel displays a security warning in the information bar, which tells you that automatic updating of links has been disabled. In this case, select Enable Content.

    Image Tip

    If you always trust the links in your workbooks (that is, if you never deal with third-party workbooks or any other workbooks from sources you don’t completely trust), you can configure Excel to always update links automatically. To begin, select File > Options > Trust Center > Trust Center Settings. In the Trust Center dialog box, select External Content and then select the Enable Automatic Update For All Workbook Links option. Select OK and then select OK again.

  • If you didn’t update a link when you opened the dependent document, you can update it any time by choosing Data > Edit Links. In the Edit Links dialog box that appears (see Figure 1-11), select the link and then select Update Values.

    The figure shows the Edit Links dialog box.
    FIGURE 1-11 Use the Edit Links dialog box to update the linked data in the source workbook.

Changing the link source

If the name of the source document changes, you’ll need to edit the link to keep the data up to date. You can edit the external reference directly, or you can change the source by following these steps:

  1. With the dependent workbook active, select Data > Edit Links to display the Edit Links dialog box.

  2. Select the link you want to work with.

  3. Select Change Source. Excel displays the Change Source dialog box.

  4. Find and then select the new source document and then select OK to return to the Edit Links dialog box.

  5. Select Close to return to the workbook.

..................Content has been hidden....................

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