Chapter 14 Excel Formulas, Functions, and Tables

Vocabulary

Absolute reference:  The cell reference in the formula is constant (always use the same cell) even when it is copied to other cells. Is also called absolute cell reference.

Argument:  The independent variable of a function.

Banded:  Having strips or bands of contrasting colors

Cell: A single box on a table or spreadsheet that can contain text or numbers.

Column:  The vertical series of cells separated by lines or space from other vertical series of cells and found in a table or spreadsheet.

Formula:  A mathematical equation.

Function:  A predefined formula in Excel that consists of an equal sign, a function name, and an argument.

Header row:  The top row of a table that contains the titles for the columns.

Hover over:  Moving the mouse pointer over an option without selecting it.

Relative reference: The cell reference changes when the formula is copied to another cell. Is also called relative cell reference.

Row: The horizontal series of cells separated by lines or space form other horizontal series of cells and found in a table or spreadsheet.

Table:  A rectangular grid consisting of columns and rows. Allows for an orderly arrangement of data.

Creating Formulas

Using formulas to perform calculations and other tasks are powerful features of Excel. Excel can add, subtract, multiply, and divide numbers. Numbers in cells can be used in the calculations.

Basics of Formulas

When building formulas in Excel, all formulas must begin with an equal sign (=). Table 1 shows the standard operators used in Excel. A formula can include numbers (e.g., =2*3) or cell references/cell addresses (e.g., =A1*B1) (Figure 1). After the formula is created and the user presses the Enter key, the calculation is completed, and the answer appears in the cell. With cell references, if the values in the cells change, the formula automatically recalculates and updates the answer.

Table 1 Standard Operations
Standard Operator Formula Example
Addition Plus sign (+) =A1+A2
Subtraction Minus sign (-) =A1-B1
Multiplication Asterisk (*) =A1*B1
Division Forward slash (/) =A1/B1

 

Image showing the use of cell addresses or cell references in a formula
Figure 1. Using cell addresses or cell references in a formula.

Using Symbols in Formulas

Several symbols are used in Excel formulas. Table 2 indicates some of the more commonly used symbols. Figures 2A and 2B show formulas that use symbols. There can be several ways to write a formula in Excel. For example, Figure 1, 2A, and 2B are three different ways to calculate the three cells. The answers are the same, but the formulas can be written differently. This chapter will cover just some of the ways to create basic formulas.

 

Table 2 Symbols used in Excel formulas
Name Symbol Description Formula Example
Equal to (equal sign) = Every Excel formula must start with an equal sign. =A1+B1
Parentheses ( ) Contain the independent variables of the function. =MAX(A1:C1)
Numbers or cell references in the parentheses will be calculated first. =A1+B1+(C1*D1)
Dollar sign $ Used for absolute cell reference in Excel formula. =($A1*$B$2)
Colon : References all cells between the two cell addresses. For instance A1:C1 includes A1, B1, and C1. =A1:C1
Image showing that the numbers or cell addresses can be placed in parentheses
Figure 2A. The numbers or cell addresses can be placed in parentheses.

 

Image showing the use of a colon to create a reference between two cells instead of listing all of the cells
Figure 2B. When summing a group of cells, the colon can be used to create a reference between the two cells. This can also be done by selecting the cells using the mouse.

Create Formulas

There are several ways to create basic formulas. The user can type the formula into the cell, click to select cells to be included in the argument, or copy the formula to other cells. When creating a formula, it will be visible in both the cell and also in the formula bar. The user can place the pointer in either location to create the formula.

Typing a formula in a cell: Select the cell where the formula will be entered. Type an equal sign (=). Type the cell address in the cell. Add the standard operator (e.g., +, -, *, or /). Type the cell address in the cell. Continue to add the standard operator along with the cell address until all the cells desired are entered. Press the Enter key. The formula will calculate, and a value will be visible in the cell.

Use the point and click method to create a formula: Select the cell where the formula will be entered. Type an equal sign (=). Click the first cell to be included in the argument and the cell address appears in the formula. Add the standard operator (e.g., +, -, *, or /). Click the next cell to be added to the argument and the cell address appears in the formula. Continue to add cell addresses and standard operators until the desired formula is created. Press the Enter key. The formula will calculate, and a value will be visible in the cell.

Edit and View Formulas

Once a formula is created, it can be revised and viewed. The user can also cancel edits during the revision process.

To edit a formula: Select the cell with the formula to edit. Click the formula bar or double click into the cell to edit the formula. Revise the formula as needed and then press the Enter key on the keyboard or click the Enter command on the formula bar (Figure 3).

To cancel the edit:  Click the Cancel command on the formula bar or press the ESC key on the keyboard.

To view existing formulas on the worksheet: Select the Formula tab and click Show Formula command in the Formula Auditing group. All the formulas in the worksheet become visible. To hide the formulas, click the Show Formula command again. The keyboard shortcut to show existing formulas is (Ctrl + ` [grave accent mark]). To hide the formulas, press the keyboard shortcut again.

 

Image showing the three commands in the formula bar
Figure 3. The left side of the formula bar includes 3 commands (from left to right): Cancel, Enter, and Insert Function.

Copy Formulas

There are several ways to copy a formula to additional cells. Two common ways to copy formulas include using the fill handle and the right click menu. A formula can be copied to adjacent cells by using the fill handle (Figure 4A). The copy and paste technique using the right click menu can copy the formula to any cell on the worksheet.

Copy the formula using the fill handle: Select the cell with the formula to copy. Click and drag the fill handle over the cells to be filled (Figure 4B). The formula will be copied to the cells when the mouse click button is released.

Copy and paste the formula: Right click on the cell with the formula to copy. Select copy on the right click menu. Select the cells to fill with the formula. Right click and select paste from the menu. The formula will be pasted in the selected cells.

 

Image showing the fill handle
Figure 4A. Fill handle is circled.

 

Image showing the fill handle being used to apply a cell formula to each subsequent line
Figure 4B. The fill handle is dragged down to A9. Notice the cell address used in the formula changes with each line.

Relative Reference

By default, Excel adjusts the cell address for each additional line when a formula is copied. This is helpful if the same formula needs to be applied to multiple rows or columns.

For example, in Figures 4A and 4B, the formula in C2 is copied to C3:C5. Notice that in row 2, the formula contains B2. In row 3, the formula contains B3 and so on. The row number after the column letter (B) changes based on the row. The changing of the cell address is known as relative reference. This is the default setting in Excel.

Absolute Reference

In the prior section, relative reference was explained. The cell reference changes when the user copies the formula to another cell. There are times when the user wants to use a specific cell reference in a formula even as it is copied to other cells. This type of cell reference is called absolute reference. When a specific row and/or column is needed in the formula even when it is copied to other cells, the absolute cell reference should be used.

To create an absolute reference, a dollar sign ($) is added before the column letter and/or row number. Table 3 describes three types of absolute references.

Table 3 Three Types of Absolute Reference
Description Format Example
Column and row remain unchanged when the formula is copied. (The exact same cell will be used each time.) Place a dollar sign ($) before the column letter and the row number. $C$4
The column remains unchanged when the formula is copied. (The row number will change.) Place a dollar sign ($) before the column letter. $C4
The row remains unchanged when the formula is copied. (The column letter will change.) Place a dollar sign ($) before the row number. C$4

To use an absolute reference: Select the cell where the formula will be entered. Type an equal sign (=). Type the formula as described in a prior section. Determine if a column and/or row need to be constant as the formula is copied. If so, insert a dollar sign ($) before the column letter to keep the column constant and/or before the row number to keep the row constant (Figure 5). Press the Enter key. The formula will calculate, and a value will be visible in the cell. Use one of the formula copying techniques to copy the formula to the additional cells.

 

Image showing a worksheet that contains both a relative and absolute reference
Figure 5. This worksheet contains both a relative reference and an absolute reference. The relative reference totals each row (see cells D4:D6). The absolute reference is calculating the tax. The cost in each row must be multiplied by cell E1. Thus in the formula the dollar sign is placed before both the column and the row number ($E$1).

Using Functions

Functions are predefined formulas in Excel. A function is created with 3 basic parts (Figure 6A):

  • Equal sign: All formulas (including functions) must start with an equal sign.
  • Function name: The name of a predefined formula. Excel contains hundreds of functions, which are divided into several subcategories, such as Text, Financial, and AutoSum. The Formula tab contains a Function Library group (Figure 6B). Table 4 provides a list of some of the more common function names.
  • Argument: Refer to both specific cells and cell ranges, which are enclosed in parentheses. A function may have one argument like the examples in Table 4. Functions may also have multiple arguments, which are separated by a comma. An example of a multiple argument function would be: =sum(C1:C4, D3:D6, F1).
Table 4 Commonly used function names
Function Name Description Formula Example
SUM Adds the values of the cells =SUM(A1:A4)
AVERAGE Finds the average =AVERAGE(A1:C1)
COUNT Counts the number of cells that contain numbers. (A cell with a zero is counted.) =COUNT(A1:C1)
COUNTA Counts the number of cells that contain numbers, letters, and spaces. =COUNTA(A1:C1)
MAX Used to find the largest number in the cell range. =MAX(A1:C1)
MIN Used to find the smallest number in the cell range. =MIN(A1:C1)
Image showing three basic parts of a function
Figure 6A. Three basic parts of a function.

 

Image showing the Function library on the formula tab
Figure 6B. The Function Library on the Formula tab.

 

Image showing the editing group on the home tab
Figure 6C, The Editing group on the Home tab,

 

Image showing auto sum command dropdown menu
Figure 6D. AutoSum Command dropdown menu.

Add a function to a cell: Select the cell where the function will be added. Type the equal sign and function name. Type a parenthesis, cell reference (cell range), and a parenthesis. Press the Enter key. For example, if all cells with numbers, spaces, and text need to be counted for A1:Z1, the function would be: =COUNTA(A1:Z1)

Add a function using the AutoSum command: Select the cell where the function will be added. On the Home tab, select the AutoSum command in the Editing group or use the keyboard shortcut (ALT + = [equal key]), if summing the cell range is required (Figure 6C). Otherwise, click the down arrow to the right of the command to open the dropdown menu (Figure 6D). Select the desired function name. The function is inserted into the cell and the cells in the argument are highlighted (Figures 7A and 7B). If the selected cells need to be modified, click and drag the mouse to select the correct cells for the argument or manually enter the cell range into the argument. Once the correct cells are highlighted, press the Enter key and the calculation will be performed and the value is shown.

Copying functions to adjacent cells: Select the cell with the function. Use click and drag the fill handle over the cells to be filled.

 

Image showing how Excel automatically highlights the cell range to the left that contain the numbers in the formula
Figure 7A. In this example, Excel automatically highlights the cell range to the left that contain numbers.

 

Image showing how Excel automatically highlights the cell range above the function
Figure 7B. In this example, Excel automatically highlights the cell range above the function.

Special Viewing Options

As a worksheet grows in size, viewing the data can become more difficult. Excel has embedded tools to assist the user with this challenge. Freezing one or more rows or columns helps the user view data while moving through a large worksheet. The worksheet can also be split into panes to assist with viewing. A new window with a worksheet from the workbook can also be added.

Freeze Rows or Columns

When working with large worksheets, seeing certain rows and columns can be helpful. Excel has a tool that allows the user to freeze a row or a column.

To freeze the top row: Using the View tab, select the Freeze Pane command in the Windows group (Figure 8A). When the dropdown menu appears, select Freeze Top Row (Figure 8B).

To freeze the first column: Using the View tab, select the Freeze Pane command in the Windows group. When the dropdown menu appears, select Freeze First Column.

To freeze a row(s): Select the row below the row(s) to be frozen. Using the View tab, select the Freeze Pane command in the Windows group. When the dropdown menu appears, select Freeze Pane. The rows above the selected row will remain visible. A gray line will be on the bottom border of the frozen rows. For example, in Figure 8C, row 3 was selected and Freeze Pane was selected on the dropdown menu. Thus, row 1 and 2 are now always visible on the worksheet above the gray line.

To freeze a column(s): Select the column to the right of the column(s) to be frozen. Using the View tab, select the Freeze Pane command in the Windows group. When the dropdown menu appears, select Freeze Pane. The columns to the left of the selected column will remain visible. A gray line will appear  on the right border of the frozen column(s). For example, in Figure 8D, column C was selected, and Freeze Pane was selected on the dropdown menu. Thus, columns A and B are now always visible on the worksheet followed by a gray line.

To unfreeze a panel, row, or column: Using the View tab, select the Freeze Pane command in the Windows group. When the dropdown menu appears, select Unfreeze Panes (Figure 8E).

 

Image showing the windows group on the view tab
Figure 8A. Windows group on the View tab.

 

Image showing the freeze command dropdown menu
Figure 8B. Freeze command dropdown menu.

 

Image showing rows 1 and 2 frozen while still viewing other rows
Figure 8C R.ows 1 and 2 were frozen as a pane, while viewing the other rows.

 

Image showing columns A and B frozen
Figure 8D. Columns A and B were frozen and remain visible.

 

Image showing that when a column or row is frozen, the Unfrozen Panes option will appear on the Freeze Pane dropdown menu
Figure 8E. When a column or row is frozen, the Unfreeze Panes option appears on the Freeze Pane dropdown menu.

Splitting a Worksheet

Excel contains a Split command. This allows the user to divide the worksheet into different panes, either in four panes, two vertical panes, or two horizontal panes. Depending on the selected cell, the software will split the worksheet differently.

To split the worksheet:

  1. Select a cell:
    • To split a worksheet into four equal panes: Select cell A1 (Figure 9A).
    • To split a worksheet into two vertical panes: Select any cell in row 1 except cell A1. (The split will appear to the left of the selected cell [Figure 9B].)
    • To split a worksheet into two horizontal panes: Select any cell in column A except cell A1. (The split will appear above the selected cell. [Figure 9C])
    • To split a worksheet into four panes: Select cell other than cells in row 1 and column A. The selected cell will be the first cell in the bottom right pane (Figure 9D).
  2. Using the View tab, select the Split command in the Windows group. The split will occur.

To modify the split: Click the split line in the row or column headers and drag the line to the desired location.

To remove the split: Use the View tab and select the Split command in the Windows group.

 

Image showing four equal panes created with the Split option
Figure 9A. When cell A1 is selected, four equal panes are created.

 

Image showing how the split will occur to left of any cell in row one, so long as it isn't A 1
Figure 9B. When a cell in row 1 is selected (except A1), the split occurs to the left of the selected cell.

 

Image showing When a cell in column A is selected, other than A1, the split occurs above the selected cell
Figure 9C. When a cell in column A is selected (other than A1), the split occurs above the selected cell.

 

Image showing When any cell is selected other than cells in row 1 and column A, the split occurs to the left and above the selected cell
Figure 9D. When cell any is selected other than cells in row 1 and column A, the split occurs to the left and above the selected cell.

Opening New Window(s)

The user can open additional windows for the same workbook. This allows the user to work on two different worksheets of the same workbook at the same time.

To open additional windows: Using the View tab, select the New Window command in the Windows group. The second window of the workbook appears.

To organize multiple open windows: Use the Arrange All command in the Windows group on the View tab.

Sort and Filter Data

Excel contains tools to sort data in a worksheet. It also contains commands to filter data, so only rows with specific information will be shown on the worksheet.

Sorting Data

Sorting data allows the user to organize the data in the worksheet. Data can be sorted numerically (e.g., sorting zip codes) and alphabetically (e.g., sorting last names in an alphabetical order). The sort can impact the entire worksheet or just a cell range. The Sort commands are located on the Data tab in the Sort & Filter group (Figure 10A). The sort command options include:

  • Sort A to Z: Organizes the data from lowest to highest.
  • Sort Z to A: Organizes the data from highest to lowest.
  • Sort: Selecting the Sort command will open the Sort dialog box (Figure 10B). The Sort dialog box allows the user to sort the data using one or more levels of sorts. The dropdown arrows open the menu with additional options for the sort.

When a worksheet sort is done, information in one column is organized. The information in each row remains together when the sort is done. For instance, if a list of addresses is sorted by the cities, each person’s information remains together, though the row may move higher or lower on the worksheet.

If a sort range is done, the data in the range of cells are impacted by the sort. Content in other cells in the worksheet are not impacted.

To sort a worksheet: Select a cell in the column to be sorted. Using the Data tab, select the desired command in the Sort & Filter group. The data will then be sorted based on the desired option. For instance, Figure 10C shows a list of providers and glove sizes. To alphabetize the providers, a cell is selected in column A. The Sort A to Z command is selected in the Sort & Filter group on the Data tab. Figure 10D shows the completed sort. The information in each row remains together, but the location of the row may have moved higher or lower on the worksheet based on the sort.

Image showing the sort and filter group on the data tab
Figure 10A. The Sort & Filter group on the Data tab.

 

Image showing how to use the sort dialog box
Figure 10B. To use the Sort dialog box, select the desired options from the dropdown menu to sort by and the order. To add additional sorts, click Add Level. To delete a sort level, click Delete Level. When the information is completed, click OK.

 

Image showing a two column worksheet listing provider names and their corresponding glove size
Figure 10C. The worksheet shows two columns of data – the providers and the glove size.

 

Image showing two columns of data selected ahead of sorting alphabetically
Figure 10D. The providers will be alphabetically sorted.

Filtering Data

Filtering data helps the user find the desired data in the worksheet. To filter data in a worksheet, the columns must have  headers.

To filter data in a worksheet: Select a cell in the header row. Using the Data tab, select the Filter command in the Sort & Filter group. Dropdown arrows will appear in each cell in the header row that has data. Select the header cell to be used for the filtering and click the down arrow. On the Filter menu, deselect (uncheck) Select All. Then select the option(s) to filter by. Click OK. Only the rows containing the option(s) selected will show.

For example, in Figure 11A, the worksheet contains providers’ name and glove size. These titles appear in the header row (Row 1). Cell B1 was selected, and the Filter command was selected. The dropdown arrows appeared in each header row cell (Figure 11B). When the arrow is clicked, the Filter menu appears (Figure 11C). The lower portion of the menu contains the filtering options. Select All was deselected. (The box was clicked, and the checkmark disappeared.) Then Large was selected and OK was clicked. Figure 11D shows the result of the filter.

To remove the filter or to see all of the data: Click the down arrow in the header row cell. Click the box next to Select All and the worksheet will show all of the data. Another option to clear the filter is to click on the Clear command in the Sort & Filter group on the Data tab (Figure 11E).

 

Image showing the lack of dropdown arrows in the header cells
Figure 11A. Notice there are no dropdown arrows in the header row prior to selecting the Filter command.

 

Image showing dropdown arrows in header cells after the filter command is selected
Figure 11B. Dropdown arrows appear in each cell in the header row when the Filter command is selected.

 

Image showing dropdown menu for filtering data
Figure 11C. The dropdown menu that is used for filtering data. The top options allow for sorting and the lower options are used for filtering.

 

Image showing glove size data filter being applied to the worksheet
Figure 11D. The data was filtered for providers with a large glove size. This data is the only data that shows on the worksheet.

 

Image showing the sort and filter group on the data tab
Figure 11E. The Sort & Filter group on the Data tab.

Create and Modify Tables

Excel contains tools to create professional looking tables. Predefined table styles are available to quickly create tables. Features can be added or removed from the table, quickly changing the appearance of the table.

Create Tables

Since a worksheet may contain data that will not be included in a table, the user must first select the cell range for the table.

To create a table: Select the cells that will be part of the table. Using the Home tab, click the Format as Table command in the Styles group (Figure 12A). A dropdown menu appears. The names of the table styles appear when hovering over the style. Select the desired table style (Figure 12B). The Create Table dialog box appears (Figure 12C). Confirm the location of the data for the table and if the table has headers. Click OK. The table style is applied to the selected cells (Figure 12D).

 

Image showing the styles group on the home tab
Figure 12A. The Styles group on the Home tab.

 

Image showing various table styles options in the Format at Table dropdown menu
Figure 12B. The Styles group on the Home tab.

 

Image showing the create table dialog box
Figure 12C. The Create Table dialog box.

 

Image showing a style applied to a table
Figure 12D. When a style is applied to a table, the filter button (dropdown arrow button) appears in each header cell.

Modify Tables

Once a cell range is formatted as a table, the user can modify the appearance of the table by using tools and commands on the Table Design contextual tab. When a cell in the table is selected, the Table Design contextual tab appears on the ribbon.

The Table Styles Options group on the Table Design contextual tab provides additional options to modify the table appearance (Figure 13A). These options include header row, total row, banded row, first column, last column, banded columns, and filter button (in the header row).

To change the appearance of the table: Select any cell in the table. Click on the Table Design contextual tab. Remove or add checkmarks as desired in the Table Style Options group (Figure 13B). As the checkmarks are added or removed, the table is immediately changed.

To change the table style: Select any cell in the table. Using the Table Design contextual tab, select the More button in the Table Styles group (see Figure 13A). Hover over the style to see it temporarily applied to the table. Click the desired style and it is applied to the table.

Image showing the table styles options group on the table design contextual tab
Figure 13A. The Table Styles Options group on the Table Design contextual tab.

 

Image showing the table styles group on the table design contextual tab.
Figure 13B. The Table Styles group on the Table Design contextual tab. See above for an expanded view.

Remove a Table

A table can be removed without impacting the data in the cell range. The formatting of the table may or may not change, depending on the style applied.

To remove a table: Select any cell in the table. Using the Table Design tab, select the Convert to Range command in the Tools group. When the dialog box appears, click Yes to convert the table to a normal range.

Create and Modify Charts

Charts are used to present the data to the audience in an easy to visualize way. Excel contains tools to create a variety of charts. Each type of chart has variations including 2D and 3D images. Table 5 shows a couple of the more commonly used Excel charts.

 

Table 5 Commonly used charts
Type Description Variations
Column charts The data is represented in a vertical bar. Provides a comparison of the values for a few categories. Image showing bar column chart options
Bar chart The data is represented in a horizontal bar. Provides a comparison of the values for a few categories.
Line chart Used to show trends over time or categories. The data points form a line, which helps the audience view the trends. Image showing line graph options for charts
Pie chart Used to show the proportional comparison of the data. All the numbers add up to 100%. Image showing pie chart options

Chart Elements

Charts contain different elements (Figure 14):

  • Vertical or Y axis: Measures the values of the columns. A vertical axis title may be present to the left of the values. (For example, in Figure 14 “Visits” is the vertical axis title.)
  • Chart title: Provides information on what the chart is about.
  • Data series: Shows the data points for each area.
  • Legend: Provides a guide for each data series color on the chart.
  • Horizontal or X axis: Provides information on the categories of the chart. A horizontal axis title may be below the category labels. (For example, in Figure 14 “Departments” is the horizontal axis title.)
Image showing the elements of a chart
Figure 14. The elements of a chart.

Inserting and Modifying Charts

When a chart is inserted into a worksheet, the format can be modified.

To insert a chart:  Select the cell range (including titles and row labels) to be inserted into the chart. Using the Insert tab, click a desired chart in the Chart group. When a menu displays, select the desired chart type.

To add chart elements: A chart title, legend, and labels can be added to the chart. Click anywhere in the chart. Using the Chart Design tab,  click the Add Chart Element command in the Chart Layouts group. A dropdown menu will open (Figure 14B). Select the element and the desired option. Chart elements can be added or removed from the chart by clicking the plus sign (+) button at the side of the chart (Figure 14C). Some elements will add text box placeholders to the chart. Double click the text box placeholder to add the information. Click outside the chart to close the text box.

To change the layout: Click anywhere in the chart. Using the Chart Design tab,  click the Quick Layout command in the Chart Layouts group. A dropdown menu will open. Select the desired layout.

To change the color: Click anywhere in the chart. Using the Chart Design tab,  click the Change Styles command in the Chart Styles group. A dropdown menu will open. Select the desired color.

To change the chart style: Click anywhere in the chart. Using the Chart Design tab,  click the More button on the Chart Styles group. A dropdown menu will open. Select the desired style.

To move the chart on the worksheet: The chart will move like an object on the worksheet. Click and drag the chart to the desired location. To move the chart to another worksheet, select the chart. Using the Chart Design tab, select the Move Chart command in the Location group. The Move Chart dialog box will appear (Figure 14D). Select the desired location for the chart and click OK.

 

Image showing The Chart Design contextual tab
Figure 14A. The Chart Design contextual tab.

 

Image showing The Add Chart Element dropdown menu
Figure 14B. The Add Chart Element dropdown menu.

 

Image showing that Chart Elements can be added or removed using the + button next to the chart
Figure 14C. Chart Elements can be added or removed using the + button next to the chart.

 

Image showing the move chart dialog box
Figure 14D. The Move Chart dialog box.

Learning Activities

Application Exercise 1

Directions: Create a worksheet. Practice using formulas, functions, absolute reference, and relative reference. Create a table and apply a table style.

 

  1. Open a new Excel workbook and save as: Exercise 14 1
  2. Create the worksheet shown in Figure 15A.
    Image showing a practice worksheet
    Figure 15A. Practice worksheet.

     

  3. Apply the Accounting format to the cell range B4:C7. Use two places after the decimal and use the dollar sign ($).
  4. Using the cell range A1:C1, Center and Merge the title.
  5. Format the font in row 1 by using Arial 14 pt bold font in an orange shade of your choice.
  6. In A3, type: Visit Type
  7. In E1, type: Increase:
  8. The charges will increase by 15%.  In F1, type: 1.15
  9. Copy cell range B3:C3 and paste in E3. (Establish Patients should be in F3.)
  10. Create a formula in E4 that would multiple B4 and F1. Use B4 in the formula. Create an absolute reference for F1.
  11. Copy the formula in E4 and paste to cell range E5:E7.
  12. Copy the formula in cell range E4:E7 and paste to cell range F4:F7.
  13. Apply the Accounting format (with 2 digits after the decimal), if cell range E4:F7 is not formatted.
  14. In cell A9, type: Average Cost
  15. In cell A10, type: Minimum Cost
  16. In cell A11, type: Maximum Cost
  17. In cell A13, type: Number of Visit Types
  18. In cell B9, use the Average function to find the average cost of the new patient visits from cell range B4:B7.
  19. In cell B10, use the Min function to find the lowest cost of the new patient visits from cell range B4:B7.
  20. In cell B11, use the Max function to find the highest cost of the new patient visits from cell range B4:B7.
  21. In cell B13, use the Count Numbers function to find the total number of visit types for cell range B4:B7.
  22. Copy cell range B9:B11 and paste in C9:C11.
  23. Copy cell range B9:C11 and paste in E9:F11.
  24. Format the text in the cell range A4:A13 by using Arial 11 pt italic font.
  25. Format the font in row 3 by using Arial 12 pt bold font and center font. Wrap text in cell range B3:F3.
  26. Format the font in the cell range B4:F13 by using Arial 11 pt.
  27. For E1, apply Align Right alignment to the cell.
  28. Select cell range A3:C7 and format as a table. Select a style of your choice. Remember your table has headers.
  29. Adjust column widths as needed to see the text.
  30. Save the workbook. Your worksheet should look like Figure 15B.
    Image showing a completed worksheet
    Figure 15B. Completed practice worksheet.

     

  31. To check the formulas and functions used, click on the Formulas tab and select the Show Formula command in the Formula Auditing group. Your worksheet should look like Figure 15C.
    Image showing a completed practice worksheet with the formulas and functions used
    Figure 15C. Completed practice worksheet showing the formulas and functions used.

 

definition

License

Icon for the Creative Commons Attribution 4.0 International License

Using Computers in Healthcare Copyright © 2024 by WisTech Open is licensed under a Creative Commons Attribution 4.0 International License, except where otherwise noted.

Share This Book