Advanced formula construction

Size: px
Start display at page:

Download "Advanced formula construction"

Transcription

1 L E S S O N 2 Advanced formula construction Lesson objectives Suggested teaching time minutes To become more adept at using formulas to get the data you want out of Excel, you will: a b c d Use range names to make your formulas more powerful and flexible. Use the IF function to create a formula that returns different results under different conditions. Use the VLOOKUP function to create a formula that picks a return value from a range of values depending upon an input value. Use Excel s error-handling and auditing features to correct errors and to better understand the structure of your worksheets. 2-1

2 Excel 2000: Advanced a Using names Names A name is a description that you assign to a cell or a group of cells. Names are an alternative to cell references. Once a name has been defined, you can refer to it in a formula; for example, in the formula =SUM(Year1), Year1 is the name given to a group of cells. You can use names to move quickly to a certain area of the workbook or to specify print ranges. Names should follow these guidelines: The first character must be text or an underscore character. The remaining characters can be text, numbers, periods, and the underscore character. Names can consist of up to 255 characters. A name cannot contain spaces. You can use lowercase and uppercase letters in names; however, Excel does not distinguish between uppercase and lowercase letters when using names. Spend a few minutes going over the structure of this worksheet with students. Point out that the bonuses are based upon the bonus table. Also call their attention to the box containing the commission rate and quota. Jaen is a common Spanish name pronounced Hine. This is a simple example of the use of names. When students first display the Define Name dialog box, they might be confused by seeing Commission_Rate in the Name box and Comm_Rate in the Names In Workbook list. Explain that Excel is assuming you want to use the text in the cell adjacent to the active cell ( Commission Rate in cell E6) to define a new name in the sheet. Comm_Rate has already been Task A-1: Observing named ranges q Objective: To observe how a named range can simplify a formula. 1. Open Chocolate Sales This worksheet shows the sales for an international chocolate distributor for a three-month period. The sheet shows totals, commissions, and bonuses for each sales representative. 2. Select and observe cell F6 3. In the Name Box drop-down list, select Comm_Rate 4. Choose _Insert Name Define _ 5. In the Names In Workbook list, select Comm_Rate and then observe the Refers To box The formula uses the name Comm_Rate instead of a number or a cell reference. (The Name Box is on the far-left side of the formula bar.) The name Comm_Rate refers to cell J3, which contains the commission rate, 18%. To display the Define Name dialog box. Here you can see the names that have been defined in the workbook, or define your own names. The name refers to cell J3 in Sheet1, the cell containing the commission rate. 6. Click on Close To close the Define Name dialog box. 2-2

3 Lesson 2: Advanced formula construction Defining names To define a name, select the cell or range of cells that you want to name, click in the Name box, and enter the name. (You can also name a cell or range of cells by using the Insert, Name, Define command.) You can choose to define a value to a name. For example, you might want to apply a name to a commission rate value of 15 percent. To do this, use the Insert, Name, Define command and enter the value in the Refers To text box. Task A-2: Defining names q Objective: To define a name to refer to the cell containing the quota, so that the name can be used in formulas you will construct later. 1. Select cell J4 This is the cell containing the quota figure. Notice that cell I4 contains the text Quota. 2. Choose _Insert Name Define _ To display the Define Name dialog box. Excel guesses that you want to name the selected cell, J4, Quota. 3. Click on OK To define the name Quota. Tip: Tell students that they also can define a name by selecting a cell or range, and then typing a name directly in the Name box. In the current example, it made sense to use the menu because Excel automatically used the label text, Quota, to create the name. 4. Observe the Name box The name Quota refers to the active cell, J4. 5. Select the range I8:J10 Do not select the labels in row Click in the Name Box Type Bonus Press R 7. Save the workbook as My Chocolate Sales Naming cells by using existing row and column labels You may have labels in your worksheet that you want to use as names for your cells or ranges of cells in that worksheet. You can save time and typing by using the Insert, Name, Create command to do this. 2-3

4 Excel 2000: Advanced Task A-3: Naming a cell by using existing row and column labels q Objective: To create names to apply to the raw sales data for each sales representative. 1. Select the range A6:D10 Excel can automatically create many names at once based on labels in a row or column. You start by selecting both the data to be named and the row or column containing the labels. 2. Choose _Insert Name Create _ To display the Create Names dialog box. Excel assumes, correctly, that you want to use the labels in the leftmost column of the range as names for the data in the corresponding rows. 3. Click on OK To close the dialog box and create the names. 4. From the Name Box dropdown list, select Hanover Select Monder from the Name Box The name refers to the range B6:D6, the raw data for Hanover. This name refers to the range B7:D7. The Create Names command created named ranges for all the representatives. 5. Display the Define Name dialog box Select each name and observe the range to which it refers (Choose Insert, Name, Define.) 6. Close the Define Name dialog box 7. Select the range E6:E10 This range contains the total formulas for each representative s sales. You will replace the cell references with names to make the formulas more readable. 2-4

5 Lesson 2: Advanced formula construction 8. Choose _Insert Name Apply _ To display the Apply Names dialog box. 9. In the Apply Names list, verify that Hanover, Jaen, Monder, Peruzzi, and Simmonds are selected Click on OK 10. Select each cell in the Total column and observe the formula it contains You will apply these names to the formulas in the selected range. To apply the names. The names have replaced the range references. 11. Save the workbook 2-5

6 Excel 2000: Advanced b Using the IF function The IF function enables you to perform a calculation only if a certain condition is true, and to perform a different calculation if that condition is false. The syntax for the function is: IF(logical_test,value_if_true,value_if_false) Logical_test is any value or expression resulting in TRUE or FALSE. Value_if_true is the value (or formula resulting in a value) that will be returned if logical_test is TRUE. Value_if_false is the value (or formula resulting in a value) that will be returned if logical_test is FALSE. For example, given the following function: IF(A4>5,A4/2,0) If A4=8, then logical_test (A4>5) is TRUE, and the function returns value_if_true (A4/2). If A4=2, then logical_test (A4>5) is FALSE, and the function returns value_if_false (0). The Paste Function command The Paste Function command can help you build functions in your worksheets. When entering complex functions, you increase your accuracy and efficiency by using the Paste Function command. It can help you select a function and assemble the arguments correctly. The formula bar displays your changes as you build your formula. To see more information about a function, select it in the Paste Function dialog box and click on the Help button. Task B-1: Using IF to create a conditional function q Objective: To modify the calculation of commissions to give a commission only to those representatives who meet the sales quota. 1. Observe the Total column Three sales representatives did not meet the quota of $60,000. These people should not receive a commission. Because Excel moves buttons around based on their usage, you might need to help students find this and other buttons. If a button does not appear on the toolbar, use the More Buttons drop-down arrow to find it. 2. Clear the range F6:F10 You will replace the current commission formula with a new one that gives commissions only to those representatives who meet the sales quota. 3. Select cell F6 Click on the Paste Function button You will enter the IF function here. To display the Paste Function dialog box. 2-6

7 Lesson 2: Advanced formula construction 4. If necessary, hide the Office Assistant 5. In the Function Category list, select Logical The IF function Use this overhead to discuss the structure of the IF function. First show only the top version to show the general form. Then use the middle version to translate the argument text into simpler terms. Show the bottom version to show how the specific IF function in this task should look. Tip: Point out that students can click on cells to enter cell references if they prefer. They will still need to type the rest of the argument. In the Function Name list, select IF 6. At the bottom of the dialog box, observe the structure and explanation of the IF function The IF function has three arguments: the condition to test (logical_test), the action to perform if the condition is true (value_if_true), and the action to perform if the condition is false (value_if_false). 7. Click on OK To display the IF function dialog box. 8. In the Logical_test box, type E6>=Quota 9. In the Value_if_true box, type E6*Comm_Rate 10. In the Value_if_false box, type 0 The condition you want the IF function to test is whether the sales representative s total (in cell E6) is greater than or equal to the quota. If the representative has met quota, the function will calculate the commission by multiplying the sales total by the commission rate. If the representative has not met quota, the function will return a commission of Click on OK To close the dialog box and enter the IF function in cell F Copy the formula in cell F6 to the range F7:F10 To duplicate the commission formula for the rest of the sales representatives. Now, only those who have met the quota receive a commission. The dash is displayed instead of a zero because of a custom format applied to that cell. 13. Save the workbook 2-7

8 Excel 2000: Advanced Using text as the value_if_false argument The value_if_false argument of the IF function can be text. However, the text must be enclosed in quotation marks. Multiple cell editing If you have a range of cells that contain similar formulas that you need to update, you can select the cells, edit the formula in the active cell, press Ctrl + Enter to enter the new formula, and copy the new formula to the selected range. Task B-2: Using IF to return a text value q Objective: To edit the IF function you entered in the last task to return the text Below Q if a sales representative fails to meet quota. M If students happen to press R instead of C+R, instruct them to select the range F6:F10, click in the formula bar, and then press C+R. If students press R, the edited formula will appear in cell F6 only, and not in cells F7, F8, F9, and F Select the range F6:F10, if necessary 2. In the formula bar, replace 0 with Below Q Press C+R 3. Observe the worksheet You will edit all these formulas simultaneously. (Be sure to include the quotation marks.) 4. Save the workbook Cells F7, F9, and F10 display the text Below Q. 2-8

9 Lesson 2: Advanced formula construction c Using the VLOOKUP function Nested functions A function's arguments can be constant values or formulas. When a function's argument is another function, it is called a nested function. You can nest up to seven levels of functions in a formula. Nested IF functions Sometimes you want a formula to make a decision and then perform the appropriate calculation. The IF function enables you to create such formulas. Used alone, an IF function can choose from only two calculations. You can, however, choose to nest IF functions within other IF functions. You are limited to seven levels within a nested function. Earlier in the lesson, you learned the syntax of an IF function: IF(logical_test,value_if_true,value_if_false) Task C-1: Examining nested IF functions q Objective: To understand the shortcomings of using nested IF functions for complex decision-making formulas. 1. Observe the range I6:J10 This range contains a table used to determine sales bonuses. Sales representatives who sell less than $50,000 receive no bonus; those who sell between $50,000 and $68,000 receive $2,000; and those who sell $68,000 or more receive $8,000. You might want to ask students if they can see any potential shortcomings of this formula. One answer would be that it lacks flexibility. Adding a new row to the bonus table, for example, would require you to completely reconstruct the formula. 2. Select cell G6 and observe its formula 3. Select the range I10:J10 From the shortcut menu for the selected range, choose _Insert _ Click on OK This formula translates the bonus table into two nested IF functions. This formula is difficult to construct, modify, and understand. You will insert another row in the bonus table. To display the Insert dialog box. To insert the new row and shift cells down. 2-9

10 Excel 2000: Advanced 4. In cell I10, enter 60 In cell J10, enter 4 5. Select and examine cell G8 The bonus formula returns the value $2. Because Jaen s total is $62, the bonus amount should be $4. To fix the problem, you would need to nest a third IF function within the formula. % Using a lookup table is like using an income tax table. Use the following example: After you determine your taxable income, you find the income figure or appropriate range in the table and then enter the tax amount on the tax form. Likewise, when you are using a lookup table, the lookup function searches for the matching value or range in the table and enters the specified value in the active cell. The VLOOKUP function The VLOOKUP function finds and returns a value located in a certain row and column of a lookup table. The lookup table contains an orderly arrangement of information. The syntax of the function is: VLOOKUP(lookup_value,table_array,col_index_num,range_lookup) Lookup_value is the value that will be looked for in the first column of the lookup table. It can be a value, reference, or text string. Table_array is a reference to (or name of a reference to) the lookup table. Col_index_num is the column number in the lookup table from which a value should be returned. Range_lookup is an optional argument that specifies whether you require an exact match or an approximate match. If the VLOOKUP function cannot find an exact match for lookup_value, it uses the largest value in the lookup table s first column that still is less than lookup_value. Excel provides several lookup functions. (For more information on the lookup functions, see the Microsoft Excel User's Guide or online Help.) Task C-2: Entering a VLOOKUP function q Objective: To create a bonus formula that will be more flexible than a formula using nested IF functions. MIf students do not clear cell contents before they click on the Paste Function button, Excel will assume they want to edit the existing 1. From the Name box dropdown list, select Bonus 2. Clear the contents of the range G6:G10 This name refers to the range I8:J11, which contains the bonus lookup table. When you create and name lookup tables, they should not include headings. You will use the VLOOKUP function to create the bonus formula. 2-10

11 Lesson 2: Advanced formula construction 3. Select cell G6 Click on the Paste Function button To display the Paste Function dialog box. 4. In the Function Category list, select Lookup & Reference In the Function Name list, select VLOOKUP The VLOOKUP function First show only the top version of the function to show the general form. Then use the middle version to translate the argument text into simpler terms. Show the bottom version to show how the specific VLOOKUP function in this task should look. Tip: Remind students that they can type or click on a cell to enter a cell reference. 5. At the bottom of the dialog box, observe the structure and explanation of the VLOOKUP function The VLOOKUP function has four arguments: the value to look for; the table in which to look for the value; the column within the lookup table from which to return a value; and an optional argument for specifying that the function only return values that match exactly. 6. Click on OK To display the VLOOKUP function dialog box. 7. In the Lookup_value box, enter E6 In the Table_array box, type Bonus In the Col_index_num box, type 2 The function will look for Hanover s sales total in the lookup table. The function will look for the value in the range named Bonus (the bonus table). The function will return the corresponding value from the second column of the bonus table. 8. Click on OK To close the dialog box and enter the function on the worksheet. 9. Copy the formula in cell G6 to the range G7:G10 To duplicate the bonus formulas for the other sales representatives. 2-11

12 Excel 2000: Advanced 10. Observe cell G8 The cell now displays the correct commission, $ Save the workbook Changing the lookup table Once you have created a VLOOKUP function, you can delete or add information within your lookup table, or change the information within your lookup table without changing your formulas. Task C-3: Observing the flexibility of the VLOOKUP function 1. Observe cell G10 Peruzzi s current bonus is $2. 2. Insert a new row in the bonus table above row 10 You will add a new level to the bonus table. 3. In cell I10, enter 55 In cell J10, enter 3 4. Observe cell G10 The cell now displays a new bonus amount, $3,000. The VLOOKUP function works properly without modification, even when you alter the bonus table. 5. Save and close the workbook 2-12

13 Lesson 2: Advanced formula construction d Using IS functions and the Auditing features IS functions There are nine worksheet functions beginning with IS that are used for testing the type of a value or reference and returning TRUE or FALSE depending on the outcome. The ISERROR function Error values, such as #N/A, #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME?, or #NULL!, appear in cells when a formula cannot be calculated correctly. Error values always begin with a number sign (#). The ISERROR (value) function determines whether or not the value argument will return an error value, where the value argument can be a formula or a reference to a formula. The ISERROR function returns TRUE (if the value argument will return an error value) or FALSE (if the value argument will not return an error value). The value argument refers to any error value. You can also nest the ISERROR function within an IF function to return messages or values that are more meaningful than TRUE or FALSE. Task D-1: Observing the ISERROR function This worksheet is not particularly realistic. It contains several error values and some staged functions for the purpose of discussing errors and the Auditing features. 1. Open Errors & Auditing This is a quarterly sales report for a year of chocolate sales. 2. Scroll to see columns B through I, and then select cell I10 The cell displays 0 because the average of four zeros is Select cell I11 The cell displays the error value #DIV/0! because you cannot average four blank cells. 4. In cell D11, enter 0 The formula in cell I11 now results in 0 because it has one value (zero) to average. Undo the entry (Click on the Undo button.) 5. Select cell I12 and click on the Paste Function button To display the ISERROR function dialog box. 2-13

14 Excel 2000: Advanced Often when you set up a worksheet, you cannot be certain of the data that will be used as input for the formulas you write. You can use IS functions such as ISERROR to test data values to be sure they are valid before using them in calculations. Another way to test input values is to use the Data, Validation command to force user input to be validated upon entry. 6. Observe the formula bar and the ISERROR function dialog box 7. Click on Cancel To close the dialog box. 8. Select cell I13 Click on the Paste Function button This function returns TRUE if the value argument is any error value. In this case, the value argument is AVERAGE(D12:G12), which returns #DIV/0! because there are no values to average. The cell displays No Data. 9. Close the dialog box (Click on Cancel.) To display the IF function dialog box. First, the IF function tests to see whether the AVERAGE function is resulting in an error. If so, the function returns the text No Data. Otherwise, the function calculates the average. The Auditing features Large and complex worksheets might contain errors. If a formula is not calculating the result you expect, then you need to verify that the formula is using the correct data. To perform this task, which is often called troubleshooting, Excel provides several Auditing features. Excel s Auditing features include the ability to view, or trace, the cells that a formula uses to calculate its result (called cell precedents); the ability to trace cells containing formulas that use the result of the formula in the active cell (called dependent cells); and the ability to trace errors, such as circular references. With the Auditing features, you can see the flow of formulas by highlighting precedent and dependent cells with lines and arrows on your worksheet. This makes troubleshooting easier. The Auditing features are available either by choosing Tools, Auditing or by clicking on buttons on the Auditing toolbar. Cell precedents and dependents Precedents are cells that are referred to by a formula. Dependents are cells containing formulas that refer to the active cell. For example, if cell B10 contains the formula =SUM(B5:B9), and cell B35 contains the formula =B10+B34, then cells B5:B9 are precedents of cell B10, and cell B35 is a dependent of cell B

15 Lesson 2: Advanced formula construction Tracer arrows Tracer arrows graphically show the flow of data between cells that contain values and those that contain formulas. These arrows point in the direction that your data flows. There are three types of tracer arrows: Formula tracer arrows are displayed as solid blue on color screens and solid black on black-and-white screens. Error tracer arrows are displayed as solid red on color screens and as a dashed black arrow on black-and-white screens. External reference (or reference to another sheet in the same workbook) tracer arrows are displayed as dashed black arrows preceded by a worksheet icon. The Auditing toolbar The Auditing toolbar contains nine buttons that are shortcuts for using the tracer arrows and other Auditing features. To display the Auditing toolbar, choose Tools, Auditing, Show Auditing Toolbar or choose Auditing from the Toolbar shortcut menu. The Auditing toolbar s nine buttons are as follows: The Trace Precedents button draws arrows from the cells containing values used in the selected formula to the active cell. A border is also drawn around the cells used in the selected formula. Every time you click on this button, an additional level of precedents is added. The Remove Precedent Arrows button removes tracer arrows drawn as a result of using the Trace Precedents button. Arrows are removed one level at a time. To remove a second level, click on the button again. The Trace Dependents button draws arrows from the active cell to the cells that refer to the active cell in their formulas. Every time you click on this button, an additional level of dependents is added. The Remove Dependent Arrows button removes tracer arrows drawn as a result of using the Trace Dependents button. Arrows are removed one level at a time. To remove a second level, click on the button again. The Remove All Arrows button erases all tracer arrows from the worksheet. The Trace Error button helps you to identify the reason for an error value in your worksheet. The New Comment button displays the Cell Note dialog box. The Circle Invalid Data button enables you to see which pieces of data fall outside the parameters set by the Data, Validation command. The Clear Validation Circles button clears any circles created by using the Circle Invalid Data button. 2-15

16 Excel 2000: Advanced Task D-2: Using the Auditing toolbar to trace cell precedents q Objective: To use the Auditing features to make it easier to see the cells to which a formula refers. 1. Choose _Tools Auditing Show_Auditing_Toolbar_ To display the Auditing toolbar. 2. Dock the toolbar (Double-click on the title bar.) 3. Select cell D22 This cell contains the total sales for the first quarter. 4. Click on the Trace Precedents button Scroll to observe the tracer arrow Excel draws a blue box around the range of cells to which the formula refers. Excel also draws a tracer arrow from the first cell in the precedent range, through the entire precedent range, and to the active cell. Students might think that the precedents are obvious in the spreadsheet. Point out that in a very large spreadsheet, it can be difficult to keep track of which cells refer to which. The Auditing features can be most helpful in such cases. 5. Double-click on the tip of the tracer arrow 6. Select cell D22 Click on the Remove Precedent Arrows button Excel selects the entire precedent range. 7. Select cell H22 This cell shows the total sales for the year. The formula adds up all the individual sales representatives sales totals. 8. Click on the Trace Precedents button twice To see two levels of precedent arrows. This makes it very clear where the data used in the calculation is coming from. 9. Click on the Remove All Arrows button 2-16

17 Lesson 2: Advanced formula construction Task D-3: Tracing cell dependents q Objective: To use the Auditing features to make it easier to see the cells containing formulas that refer to the active cell. 1. Select cell D17 2. Click on the Trace Dependents button Observe the tracer arrows Excel draws tracer arrows from the active cell to all cells that contain formulas that refer to the active cell. 3. Click on the Trace Dependents button again To display the next level of dependent tracer arrows. 4. Click on the Remove All Arrows button Practice Task 1. Practice using the Trace Precedents and Trace Dependents buttons. 2. Remove any tracer arrows. Tracing errors If a formula results in an error value (for example #DIV/0!), you can use the Trace Error button to identify the source of the error. Task D-4: Using the Trace Error button 1. Select cell I24 This cell should contain the average sales per representative per quarter, but instead displays the error value #DIV/0!. 2. Click on the Trace Error button Excel displays arrows from the source of the error to the active cell. 2-17

18 Excel 2000: Advanced 3. Observe the tracer arrows (You will need to scroll.) The #DIV/0! error in cell I24 is a result of the #DIV/0! error in cell I11. That error is in turn caused by the lack of any values in its precedent range, D11:G Remove all arrows MThe Auditing toolbar does not appear in the Toolbars shortcut menu, and therefore cannot be closed that way. Suggest to students that they use the Tools, Auditing, Show Auditing Toolbar command. 5. Close the Auditing toolbar (Choose Tools, Auditing, Show Auditing Toolbar.) 6. Close the workbook without saving changes 2-18

19 Lesson 2: Advanced formula construction ( Practice Unit for Lesson 2 In this activity, you will create an advanced IF formula. You will also work with the Auditing toolbar. 1. Open Practice - Advanced Formulas. 2. By using the Name box, investigate the existing range names in this worksheet. 3. By using the Paste Function dialog box, create a formula in cell G7 that will calculate a commission for Conner only if the sales total is greater than or equal to the quota. If it is not greater than or equal to the quota, have it return the text No Commis. To check your formula, see Figure Copy the formula created in step 3 to the range G8:G Compare your screen to Figure Activate the Auditing sheet and investigate the reason for the DIV/0! error value in cell G15 by using the Auditing toolbar. 7. Remove any tracer arrows. 8. Resolve the problem by fixing the formula reference. (Cell G15 should be the average monthly surplus figure.) 9. Close the Auditing toolbar. 10. Save the file as My Practice - Advanced Formulas 11. Close the file. Figure 2-1: The IF function. Figure 2-2: The completed file My Practice - Advanced Formulas. 2-19

20 Excel 2000: Advanced ) Wrap-up for Lesson 2 a What are some advantages of naming ranges? Answers might include: you can refer to a name in a formula, making the formula easier to understand, and you can use names to move quickly to a certain area of the workbook or to specify print ranges. b Describe each of the three arguments of the IF function. The first argument defines the condition to test. Its purpose is to determine the condition under which each alternative action will be performed. The second argument defines what action to perform if the condition is true. Its purpose is to perform an action based on the result of the first argument. The third argument defines what action to perform if the condition is false. Its purpose is to perform an action based on the result of the first argument. c What is an advantage of using the VLOOKUP function rather than a nested IF function? If your data changes, you do not have to update your formula. d If #DIV/0! appears in a cell, how might you explore the problem? Select the cell and click on the Trace Error button on the Auditing toolbar. Does #DIV/0! indicate that your formula is incorrect? No, it may be that the cells referred to in the formulas are empty or contain #DIV/0! as well. 2-20

MICROSOFT EXCEL VERSIONS 2007 & 2010 LEVEL 3. WWP Learning and Development Ltd Page 1

MICROSOFT EXCEL VERSIONS 2007 & 2010 LEVEL 3. WWP Learning and Development Ltd Page 1 MICROSOFT EXCEL VERSIONS 2007 & 2010 LEVEL 3 WWP Learning and Development Ltd Page 1 NOTE Unless otherwise stated, screenshots in this book were taken using Excel 2007 with a silver colour scheme and running

More information

MICROSOFT EXCEL 2002 (XP): LEVEL 3

MICROSOFT EXCEL 2002 (XP): LEVEL 3 MICROSOFT EXCEL 2002 (XP): LEVEL 3 WWP Training Limited Page 1 STUDENT EDITION LESSON 1 - USING LOGICAL LOOKUP AND ROUND FUNCTIONS... 7 Using Lookup Functions... 8 Using the VLOOKUP Function... 8 Using

More information

MODULE VI: MORE FUNCTIONS

MODULE VI: MORE FUNCTIONS MODULE VI: MORE FUNCTIONS Copyright 2012, National Seminars Training More Functions Using the VLOOKUP and HLOOKUP Functions Lookup functions look up values in a table and return a result based on those

More information

IF & VLOOKUP Function

IF & VLOOKUP Function IF & VLOOKUP Function If Function An If function is used to make logical comparisons between values, returning a value of either True or False. The if function will carry out a specific operation, based

More information

MICROSOFT EXCEL 2003 LEVEL 3

MICROSOFT EXCEL 2003 LEVEL 3 MICROSOFT EXCEL 2003 LEVEL 3 WWP Training Limited Page 1 STUDENT EDITION LESSON 1 - USING LOGICAL, LOOKUP AND ROUND FUNCTIONS... 7 Using Lookup Functions... 8 Using the VLOOKUP Function... 8 Using the

More information

MICROSOFT EXCEL 2000 LEVEL 3

MICROSOFT EXCEL 2000 LEVEL 3 MICROSOFT EXCEL 2000 LEVEL 3 WWP Training Limited Page 1 STUDENT EDITION LESSON 1 - USING LOGICAL, LOOKUP AND ROUND FUNCTIONS... 7 Using the IF Function... 8 Using Nested IF Functions... 10 Using an AND

More information

FSFOA EXCEL INSTRUCTIONS. Tips and Shortcuts

FSFOA EXCEL INSTRUCTIONS. Tips and Shortcuts Tips and Shortcuts Drag Fill 1. Go to the 2016 Sales Report worksheet. 2. In cell E4 key in the calculation =D4-C4 and hit enter. 3. Go back to cell E4 and put your cursor in the bottom right corner of

More information

Using Advanced Formulas and 9 Securing Workbooks

Using Advanced Formulas and 9 Securing Workbooks Using Advanced Formulas and 9 Securing Workbooks LESSON SKILL MATRIX Skill Exam Objective Objective Number Using Formulas to Conditionally Use a series of conditional 5.4.3 Summarize Data logic values

More information

Excel Tips for Compensation Practitioners Weeks 9-12 Working with Lookup Formulae

Excel Tips for Compensation Practitioners Weeks 9-12 Working with Lookup Formulae Excel Tips for Compensation Practitioners Weeks 9-12 Working with Lookup Formulae Week 9 Using lookup functions Microsoft Excel is essentially a spreadsheet tool, while Microsoft Access is a database tool.

More information

Commonly Used Excel Formulas

Commonly Used Excel Formulas Microsoft Excel 2016 Advanced Formulas Look Up Values in a List of Data: Commonly Used Excel Formulas Let's say you want to look up an employee's phone extension by using their badge number or the correct

More information

Microsoft Excel 2007

Microsoft Excel 2007 Kennesaw State University Information Technology Services Microsoft Excel 2007 Special Topics PivotTable IF Function V-lookup Function Copyright 2010 KSU Dept. of Information Technology Services This document

More information

Excel Intermediate. Click in the name column of our Range of Data. (Do not highlight the column) Click on the Data Tab in the Ribbon

Excel Intermediate. Click in the name column of our Range of Data. (Do not highlight the column) Click on the Data Tab in the Ribbon Custom Sorting and Subtotaling Excel Intermediate Excel allows us to sort data whether it is alphabetic or numeric. Simply clicking within a column or row of data will begin the process. Click in the name

More information

Excel 2. Module 2 Formulas & Functions

Excel 2. Module 2 Formulas & Functions Excel 2 Module 2 Formulas & Functions Revised 1/1/17 People s Resource Center Module Overview This module is part of the Excel 2 course which is for advancing your knowledge of Excel. During this lesson

More information

Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex

Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex Basic Topics: Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex Review ribbon terminology such as tabs, groups and commands Navigate a worksheet, workbook, and multiple workbooks Prepare

More information

Skill Set 5. Outlines and Complex Functions

Skill Set 5. Outlines and Complex Functions Spreadsheet Software OCR Level 3 ITQ Skill Set 5 Outlines and Complex Functions By the end of this Skill Set you should be able to: Create an Outline Work with an Outline Create Automatic Subtotals Use

More information

MS EXCEL: TABLES, FORMATS, FUNCTIONS AND MACROS

MS EXCEL: TABLES, FORMATS, FUNCTIONS AND MACROS MS EXCEL: TABLES, FORMATS, FUNCTIONS AND MACROS ü Open the file Task_1_Template.xlsx. All the further tasks will be conducted in this file, on particular sheets (Menu, Task 1, Task 2, Task 3). TASK 1.

More information

Lesson 4: Auditing and Additional Formulas. Return to the FastCourse Excel 2007 Level 3 book page

Lesson 4: Auditing and Additional Formulas. Return to the FastCourse Excel 2007 Level 3 book page Lesson 4: Auditing and Additional Formulas Return to the FastCourse Excel 2007 Level 3 book page Lesson Objectives After studying this lesson, you will be able to: Use 3-D cell references in formulas to

More information

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited EXCEL ADVANCED

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited EXCEL ADVANCED EXCEL ADVANCED Overview OVERVIEW... 2 ADVANCED FORMULAS... 4 VIEW THE PROJECT... 4 Viewing Available Excel Functions... 5 Help with Functions... 6 TEXT FUNCTIONS... 7 Text Functions Used in this Section:...

More information

Intermediate Excel Training Course Content

Intermediate Excel Training Course Content Intermediate Excel Training Course Content Lesson Page 1 Absolute Cell Addressing 2 Using Absolute References 2 Naming Cells and Ranges 2 Using the Create Method to Name Cells 3 Data Consolidation 3 Consolidating

More information

EVALUATION ONLY. In this chapter, you will learn new. Text and Analysis EXCEL 2016 CHAPTER TIMING PROJECT: ANALYZING SALES INFORMATION

EVALUATION ONLY. In this chapter, you will learn new. Text and Analysis EXCEL 2016 CHAPTER TIMING PROJECT: ANALYZING SALES INFORMATION EXCEL 2016 3Advanced Functions for Text and Analysis In this chapter, you will learn new functions that give you greater ability for analysis and decision making. They include functions that either sum

More information

Understanding error messages

Understanding error messages Understanding error messages Excel may display error messages if your formulae or functions contain mistakes (note that it will not detect all errors in calculations). It is always worth checking the results

More information

To be able to modify a worksheet and use functions, you will: Select ranges of cells on a worksheet by using the mouse.

To be able to modify a worksheet and use functions, you will: Select ranges of cells on a worksheet by using the mouse. L E S S O N 3 Modifying a workbook Suggested teaching time 60-70 minutes Lesson objectives To be able to modify a worksheet and use functions, you will: a b c Select ranges of cells on a worksheet by using

More information

Using Basic Formulas 4

Using Basic Formulas 4 Using Basic Formulas 4 LESSON SKILL MATRIX Skills Exam Objective Objective Number Understanding and Displaying Formulas Display formulas. 1.4.8 Using Cell References in Formulas Insert references. 4.1.1

More information

Excel Expert Microsoft Excel 2010

Excel Expert Microsoft Excel 2010 Excel Expert Microsoft Excel 2010 Formulas & Functions Table of Contents Excel 2010 Formulas & Functions... 2 o Formula Basics... 2 o Order of Operation... 2 Conditional Formatting... 2 Cell Styles...

More information

Excel Formulas and Functions

Excel Formulas and Functions Excel Formulas and Functions Formulas Relative cell references Absolute cell references Mixed cell references Naming a cell or range Naming constants Dates and times Natural-language formulas Functions

More information

Excel VLOOKUP. An EMIS Coordinator s Friend

Excel VLOOKUP. An EMIS Coordinator s Friend Excel VLOOKUP An EMIS Coordinator s Friend Vlookup, a function in excel, stands for Vertical Lookup. This function allows you to search a specific table of data, look for a match within the table of data

More information

Data Service Center May, Compiled by: Katey Semmel Donna Frieze

Data Service Center May, Compiled by: Katey Semmel Donna Frieze www.dataservice.org Data Service Center May, 2000 478-8957 Compiled by: Katey Semmel Donna Frieze Table of Contents Charting Data... 3 Customizing Charts... 6 Other Customizations... 9 Chart Toolbar...12

More information

Excel Lesson 3 USING FORMULAS & FUNCTIONS

Excel Lesson 3 USING FORMULAS & FUNCTIONS Excel Lesson 3 USING FORMULAS & FUNCTIONS 1 OBJECTIVES Enter formulas in a worksheet Understand cell references Copy formulas Use functions Review and edit formulas 2 INTRODUCTION The value of a spreadsheet

More information

Advanced Formulas and Functions in Microsoft Excel

Advanced Formulas and Functions in Microsoft Excel Advanced Formulas and Functions in Microsoft Excel This document provides instructions for using some of the more complex formulas and functions in Microsoft Excel, as well as using absolute references

More information

To be able to create charts that graphically represent your worksheet data, you will: Create column charts on chart sheets by using the F11 key.

To be able to create charts that graphically represent your worksheet data, you will: Create column charts on chart sheets by using the F11 key. L E S S O N 1 Creating charts Suggested teaching time 55-65 minutes Lesson objectives To be able to create charts that graphically represent your worksheet data, you will: a b c Create column charts on

More information

Microsoft Excel 2010 Handout

Microsoft Excel 2010 Handout Microsoft Excel 2010 Handout Excel is an electronic spreadsheet program you can use to enter and organize data, and perform a wide variety of number crunching tasks. Excel helps you organize and track

More information

What is a spreadsheet?

What is a spreadsheet? Microsoft Excel is a spreadsheet developed by Microsoft. It is a software program included in the Microsoft Office suite (Others include MS Word, MS PowerPoint, MS Access etc.). Microsoft Excel is used

More information

Pivot Table Project. Objectives. By the end of this lesson, you will be able to:

Pivot Table Project. Objectives. By the end of this lesson, you will be able to: Pivot Table Project Objectives By the end of this lesson, you will be able to: Set up a Worksheet Enter Labels and Values Use Sum and IF functions Format and align cells Change column width Use AutoFill

More information

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited INTERMEDIATE MICROSOFT EXCEL 2016 Intermediate Microsoft Excel 2016 (EXC2016.2 version 1.0.1) Copyright Information Copyright 2016 Webucator. All rights reserved. The Authors Dave Dunn Dave Dunn joined

More information

Using Advanced Formulas

Using Advanced Formulas 10 Using Advanced Formulas LESSON SKILL MATRIX Skills Exam Objective Objective Number Using Formulas to Conditionally Summarize Data Adding Conditional Logic Functions to Formulas Using Formulas to Modify

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Excel contains numerous tools that are intended to meet a wide range of requirements. Some of the more specialised tools are useful to people in certain situations while others have

More information

EXCEL 2003 DISCLAIMER:

EXCEL 2003 DISCLAIMER: EXCEL 2003 DISCLAIMER: This reference guide is meant for experienced Microsoft Excel users. It provides a list of quick tips and shortcuts for familiar features. This guide does NOT replace training or

More information

Excel Shortcuts Increasing YOUR Productivity

Excel Shortcuts Increasing YOUR Productivity Excel Shortcuts Increasing YOUR Productivity CompuHELP Division of Tommy Harrington Enterprises, Inc. tommy@tommyharrington.com https://www.facebook.com/tommyharringtonextremeexcel Excel Shortcuts Increasing

More information

Excel: Linking sheets and summary sheets (Mac OS)

Excel: Linking sheets and summary sheets (Mac OS) Excel: Linking sheets and summary sheets (Mac OS) To make the content of one cell appear somewhere else Click in the destination cell and type = Click on the cell whose content you want to pull in and

More information

exam. Number: Passing Score: 800 Time Limit: 120 min MICROSOFT Excel 2013 Expert Part One.

exam. Number: Passing Score: 800 Time Limit: 120 min MICROSOFT Excel 2013 Expert Part One. 77-427.exam Number: 77-427 Passing Score: 800 Time Limit: 120 min MICROSOFT 77-427 Excel 2013 Expert Part One Exam E QUESTION 1 Conditional Formatting. Use a formula to determine formatting of a cell.

More information

1. NORM.INV function Returns the inverse of the normal cumulative distribution for the specified mean and standard deviation.

1. NORM.INV function Returns the inverse of the normal cumulative distribution for the specified mean and standard deviation. Excel Primer for Risk Management Course 1. NORM.INV function Returns the inverse of the normal cumulative distribution for the specified mean and standard deviation. 2. VLOOKUP The VLOOKUP function syntax

More information

USING FORMULAS AND FUNCTIONS...

USING FORMULAS AND FUNCTIONS... Overview NOTES... 2 OVERVIEW... 3 VIEW THE PROJECT... 5 USING FORMULAS AND FUNCTIONS... 6 BASIC EXCEL REVIEW... 6 FORMULAS... 7 Typing formulas... 7 Clicking to insert cell references... 7 Using a Simple

More information

Tutorial 7. Working With Excel s Editing and Web Tools. Review

Tutorial 7. Working With Excel s Editing and Web Tools. Review Tutorial 7 Working With Excel s Editing and Web Tools Review Worksheet Group changes to one are applied to the entire group (think of all the time you can save!) Using 3D references to refer to cells on

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Excel contains numerous tools that are intended to meet a wide range of requirements. Some of the more specialised tools are useful to only certain types of people while others have

More information

Moving and copying data

Moving and copying data L E S S O N 4 Moving and copying data Suggested teaching time 50-60 minutes Lesson objectives To be able to move and copy data, you will: a b c d e Insert rows and ranges by using shortcut menu choices.

More information

Les s on Objectives. Student Files Us ed

Les s on Objectives. Student Files Us ed Lesson 3 - Potpourri 31 Lesson 3 P otpourri Les s on Topics The Fill Command Wrapping Text View Options Edit Options Other Fill Handle Uses Les s on Objectives At the end of the lesson, you will be able

More information

Introduction to the workbook environment

Introduction to the workbook environment L E S S O N 7 Introduction to the workbook environment Lesson objectives Suggested teaching time To begin using the three-dimensional aspect of the Excel workbook, you will: 60-70 minutes a b c d Work

More information

How to use the Vlookup function in Excel

How to use the Vlookup function in Excel How to use the Vlookup function in Excel The Vlookup function combined with the IF function would have to be some of the most used functions in all my Excel spreadsheets. The combination of these functions

More information

ADVANCED EXCEL: LOOKUP FUNCTIONS

ADVANCED EXCEL: LOOKUP FUNCTIONS ADVANCED EXCEL: LOOKUP FUNCTIONS Excel has several Lookup and Reference functions available that are used to search through rows of data to locate specific values to display in a cell or to use in a formula.

More information

New Perspectives on Microsoft Excel Module 3: Performing Calculations with formulas and Functions

New Perspectives on Microsoft Excel Module 3: Performing Calculations with formulas and Functions New Perspectives on Microsoft Excel 2016 Module 3: Performing Calculations with formulas and Functions Objectives, Part 1 Document formulas and data values Explore function syntax Insert functions from

More information

Data Service Center December

Data Service Center December www.dataservice.org Data Service Center December 2005 504-7222 Property of the Data Service Center, Wilmington, DE For Use Within the Colonial & Red Clay Consolidated Public School Districts Only Table

More information

3 Excel Tips for Marketing Efficiency

3 Excel Tips for Marketing Efficiency 3 Excel Tips for Marketing Efficiency 3 Excel Database Tips for Marketing Efficiency In these challenging times, companies continue to reduce staff to save money. Those who remain must do more. How to

More information

ICT IGCSE Practical Revision Presentation Spreadsheets. Columns. Rows. This is a range of cells. More than one cell has been selected.

ICT IGCSE Practical Revision Presentation Spreadsheets. Columns. Rows. This is a range of cells. More than one cell has been selected. Cell References Columns Rows Column Reference G Yellow Cell Reference B2 Green Cell Reference D3 This is a range of cells. More than one cell has been selected. G6:G11 From Row 6 To 11 A range will be

More information

Microsoft Office Excel 2007: Advanced Unit 02 - Lookups and Data Tables

Microsoft Office Excel 2007: Advanced Unit 02 - Lookups and Data Tables Microsoft Office Excel 2007: Advanced Unit 02 - Lookups and Data Tables Slide 1 Lookups and data tables Unit objectives Use VLOOKUP and HLOOKUP to find values in a worksheet list Use MATCH to find the

More information

THE FORMULAS TAB, CELL REFERENCING,THE VIEW TAB & WORKBOOK SECURITY THE FORMULAS TAB, CELL REFERENCING, THE VIEW TAB & WORKBOOK SECURITY OBJECTIVES

THE FORMULAS TAB, CELL REFERENCING,THE VIEW TAB & WORKBOOK SECURITY THE FORMULAS TAB, CELL REFERENCING, THE VIEW TAB & WORKBOOK SECURITY OBJECTIVES THE FORMULAS TAB, CELL REFERENCING,THE VIEW TAB & WORKBOOK SECURITY Session 9 THE FORMULAS TAB, CELL REFERENCING, THE VIEW TAB & WORKBOOK SECURITY General Objectives OBJECTIVES Session 9 In this Session,

More information

Workbook Also called a spreadsheet, the Workbook is a unique file created by Excel. Title bar

Workbook Also called a spreadsheet, the Workbook is a unique file created by Excel. Title bar Microsoft Excel 2007 is a spreadsheet application in the Microsoft Office Suite. A spreadsheet is an accounting program for the computer. Spreadsheets are primarily used to work with numbers and text.

More information

INTRODUCTION... 1 UNDERSTANDING CELLS... 2 CELL CONTENT... 4

INTRODUCTION... 1 UNDERSTANDING CELLS... 2 CELL CONTENT... 4 Introduction to Microsoft Excel 2016 INTRODUCTION... 1 The Excel 2016 Environment... 1 Worksheet Views... 2 UNDERSTANDING CELLS... 2 Select a Cell Range... 3 CELL CONTENT... 4 Enter and Edit Data... 4

More information

My Top 5 Formulas OutofhoursAdmin

My Top 5 Formulas OutofhoursAdmin CONTENTS INTRODUCTION... 2 MS OFFICE... 3 Which Version of Microsoft Office Do I Have?... 4 How To Customise Your Recent Files List... 5 How to recover an unsaved file in MS Office 2010... 7 TOP 5 FORMULAS...

More information

Lecture-14 Lookup Functions

Lecture-14 Lookup Functions Lecture-14 Lookup Functions How do I write a formula to compute tax rates based on income? Given a product ID, how can I look up the product s price? Suppose that a product s price changes over time. I

More information

Intermediate Excel 2016

Intermediate Excel 2016 Intermediate Excel 2016 Relative & Absolute Referencing Relative Referencing When you copy a formula to another cell, Excel automatically adjusts the cell reference to refer to different cells relative

More information

DESCRIPTION 1 TO DEFINE A NAME 2. USING RANGE NAMES 2 Functions 4 THE IF FUNCTION 4 THE VLOOKUP FUNCTION 5 THE HLOOKUP FUNCTION 6

DESCRIPTION 1 TO DEFINE A NAME 2. USING RANGE NAMES 2 Functions 4 THE IF FUNCTION 4 THE VLOOKUP FUNCTION 5 THE HLOOKUP FUNCTION 6 Table of contents The use of range names 1 DESCRIPTION 1 TO DEFINE A NAME 2 USING RANGE NAMES 2 Functions 4 THE IF FUNCTION 4 THE VLOOKUP FUNCTION 5 THE HLOOKUP FUNCTION 6 THE ROUND FUNCTION 7 THE SUMIF

More information

Working with Data and Charts

Working with Data and Charts PART 9 Working with Data and Charts In Excel, a formula calculates a value based on the values in other cells of the workbook. Excel displays the result of a formula in a cell as a numeric value. A function

More information

Microsoft Excel Lookup Functions - Reference Guide

Microsoft Excel Lookup Functions - Reference Guide LOOKUP Functions - Description Excel Lookup functions are used to look up and extract data from a list or table and insert the data into another list or table. Use the appropriate lookup function depending

More information

Section 6. Functions

Section 6. Functions Section 6 Functions By the end of this Section you should be able to: Use Logical Functions Use Date and Time Functions Use Lookup Functions Use Maths and Financial Functions Use Concatenate Nest Functions

More information

STATISTICAL TECHNIQUES. Interpreting Basic Statistical Values

STATISTICAL TECHNIQUES. Interpreting Basic Statistical Values STATISTICAL TECHNIQUES Interpreting Basic Statistical Values INTERPRETING BASIC STATISTICAL VALUES Sample representative How would one represent the average or typical piece of information from a given

More information

Open Learning Guide. Microsoft Excel Introductory. Release OL356v1

Open Learning Guide. Microsoft Excel Introductory. Release OL356v1 Guide Microsoft Excel 2013 Introductory Note: Microsoft, Excel and Windows are registered trademarks of the Microsoft Corporation. Release OL356v1 Contents SECTION 1 FUNDAMENTALS... 9 1 - SPREADSHEET PRINCIPLES...

More information

MICROSOFT OFFICE APPLICATIONS

MICROSOFT OFFICE APPLICATIONS MICROSOFT OFFICE APPLICATIONS EXCEL 2016 : LOOKUP, VLOOKUP and HLOOKUP Instructor: Terry Nolan terry.nolan@outlook.com Friday, April 6, 2018 1 LOOKUP FUNCTIONS WHAT ARE LOOKUP FUNCTIONS USUALLY USED FOR?

More information

Excel Tips for Compensation Practitioners Weeks Data Validation and Protection

Excel Tips for Compensation Practitioners Weeks Data Validation and Protection Excel Tips for Compensation Practitioners Weeks 29-38 Data Validation and Protection Week 29 Data Validation and Protection One of the essential roles we need to perform as compensation practitioners is

More information

Chapter 3: The IF Function and Table Lookup

Chapter 3: The IF Function and Table Lookup Chapter 3: The IF Function and Table Lookup Objectives This chapter focuses on the use of IF and LOOKUP functions, while continuing to introduce other functions as well. Here is a partial list of what

More information

To understand the limitations of paper spreadsheets and to explore the Excel environment, you will:

To understand the limitations of paper spreadsheets and to explore the Excel environment, you will: L E S S O N 1 Excel basics Suggested teaching time 20-30 minutes Lesson objectives To understand the limitations of paper spreadsheets and to explore the Excel environment, you will: a b c Identify some

More information

Using protection and display options

Using protection and display options L E S S O N 6 Using protection and display options Lesson objectives Suggested teaching time In order to display and protect your worksheet data, you will: 40-50 minutes a b c Create and control comments

More information

Ahmad Al-Rjoub Excel Tutorial 7. Using Advanced Functions, Conditional Formatting, and Filtering

Ahmad Al-Rjoub Excel Tutorial 7. Using Advanced Functions, Conditional Formatting, and Filtering Ahmad Al-Rjoub Excel Tutorial 7 Using Advanced Functions, Conditional Formatting, and Filtering Objectives Evaluate a single condition using the IF function Evaluate multiple conditions using the AND function

More information

Skill Set 3. Formulas

Skill Set 3. Formulas Skill Set 3 Formulas By the end of this Skill Set you should be able to: Create Simple Formulas Understand Totals and Subtotals Use Brackets Select Cells with the Mouse to Create Formulas Calculate Percentages

More information

Creating a Spreadsheet by Using Excel

Creating a Spreadsheet by Using Excel The Excel window...40 Viewing worksheets...41 Entering data...41 Change the cell data format...42 Select cells...42 Move or copy cells...43 Delete or clear cells...43 Enter a series...44 Find or replace

More information

Excel & Business Math Video/Class Project #28 IF Function, ISBLANK function and Building a Check Register

Excel & Business Math Video/Class Project #28 IF Function, ISBLANK function and Building a Check Register Topics Excel & Business Math Video/Class Project #28 IF Function, ISBLANK function and Building a Check Register 1) Format Check Register with Borders as seen in this video... 2 2) Data Validation for

More information

Excel 2007 Intermediate Table of Contents

Excel 2007 Intermediate Table of Contents Table of Contents Working with Data... 1 Subtotals... 1 Removing Subtotals... 2 Grouping Columns or Rows... 2 Ungrouping Data... 3 AutoCalculate Customize Status Bar... 3 Format as Table Filters and Sorting...

More information

Contents. Group 3 Excel Handouts 2010

Contents. Group 3 Excel Handouts 2010 Contents Function Library... 2 Function Operators... 2 Order of Multiple Operators... 2 Function Library... 3 Formula Auditing... 4 Name Cells... 7 Comments... 8 Show Ink... 9 Show Ink is a colorful way

More information

Editing and Formatting Worksheets

Editing and Formatting Worksheets LESSON 2 Editing and Formatting Worksheets 2.1 After completing this lesson, you will be able to: Format numeric data. Adjust the size of rows and columns. Align cell contents. Create and apply conditional

More information

Instructor Edition EVALUATION ONLY

Instructor Edition EVALUATION ONLY ATIO OLY ATIO OLY Instructor Edition ATIO OLY Instructor Edition EXEL2016-L3-R10-ICB 6 ATIO OLY Table of Contents Introduction... 1 Course setup...2 Chapter 1: Logical and Lookup Functions...3 Module A:

More information

Become strong in Excel (2.0) - 5 Tips To Rock A Spreadsheet!

Become strong in Excel (2.0) - 5 Tips To Rock A Spreadsheet! Become strong in Excel (2.0) - 5 Tips To Rock A Spreadsheet! Hi folks! Before beginning the article, I just wanted to thank Brian Allan for starting an interesting discussion on what Strong at Excel means

More information

6. Essential Spreadsheet Operations

6. Essential Spreadsheet Operations 6. Essential Spreadsheet Operations 6.1 Working with Worksheets When you open a new workbook in Excel, the workbook has a designated number of worksheets in it. You can specify how many sheets each new

More information

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited EXCEL INTERMEDIATE

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited EXCEL INTERMEDIATE EXCEL INTERMEDIATE Overview NOTES... 2 OVERVIEW... 3 VIEW THE PROJECT... 5 USING FORMULAS AND FUNCTIONS... 6 BASIC EXCEL REVIEW... 6 FORMULAS... 7 Typing formulas... 7 Clicking to insert cell references...

More information

Excel Tips. Contents. By Dick Evans

Excel Tips. Contents. By Dick Evans Excel Tips By Dick Evans Contents Pasting Data into an Excel Worksheet... 2 Divide by Zero Errors... 2 Creating a Dropdown List... 2 Using the Built In Dropdown List... 3 Entering Data with Forms... 4

More information

Formulas Learn how to use Excel to do the math for you by typing formulas into cells.

Formulas Learn how to use Excel to do the math for you by typing formulas into cells. Microsoft Excel 2007: Part III Creating Formulas Windows XP Microsoft Excel 2007 Microsoft Excel is an electronic spreadsheet program. Electronic spreadsheet applications allow you to type, edit, and print

More information

VLOOKUP Function Purpose (Mac Guide)

VLOOKUP Function Purpose (Mac Guide) VLOOKUP Function Purpose (Mac Guide) Let s say that you have two different Excel documents. Each document has different student achievement or outcomes data. In this example, the first document has DIBELS

More information

Excel 2010: Getting Started with Excel

Excel 2010: Getting Started with Excel Excel 2010: Getting Started with Excel Excel 2010 Getting Started with Excel Introduction Page 1 Excel is a spreadsheet program that allows you to store, organize, and analyze information. In this lesson,

More information

Introducing Excel Entering Text, Numbers and Dates

Introducing Excel Entering Text, Numbers and Dates Chapter 1 Use excel to do quantitative analysis (numerical analysis) Know what rows, columns, etc. are What are the things you want to keep in mind when creating a workbook (planning, etc.)? Three different

More information

Printing Monthly Eligible List for Providers

Printing Monthly Eligible List for Providers Printing Monthly Eligible List for Providers We have to begin by obtaining two lists from WebKIDSS. The first one will be a Service Line Export, the second will be a Medicaid List Form. *If you do not

More information

EXCEL Using Excel for Data Query & Management. Information Technology. MS Office Excel 2007 Users Guide. IT Training & Development

EXCEL Using Excel for Data Query & Management. Information Technology. MS Office Excel 2007 Users Guide. IT Training & Development Information Technology MS Office Excel 2007 Users Guide EXCEL 2007 Using Excel for Data Query & Management IT Training & Development (818) 677-1700 Training@csun.edu TABLE OF CONTENTS Introduction... 1

More information

LIBRE OFFICE CALC What is Calc? Spreadsheets, sheets, and cells spreadsheets Spreadsheets Cells

LIBRE OFFICE CALC What is Calc? Spreadsheets, sheets, and cells spreadsheets Spreadsheets Cells 1 LIBRE OFFICE CALC What is Calc? Calc is the spreadsheet component of LibreOffice. You can enter data (usually numerical) in a spreadsheet and then manipulate this data to produce certain results. Alternatively,

More information

Excel Level 1

Excel Level 1 Excel 2016 - Level 1 Tell Me Assistant The Tell Me Assistant, which is new to all Office 2016 applications, allows users to search words, or phrases, about what they want to do in Excel. The Tell Me Assistant

More information

Application of Skills: Microsoft Excel 2013 Tutorial

Application of Skills: Microsoft Excel 2013 Tutorial Application of Skills: Microsoft Excel 2013 Tutorial Throughout this module, you will progress through a series of steps to create a spreadsheet for sales of a club or organization. You will continue to

More information

Learning Worksheet Fundamentals

Learning Worksheet Fundamentals 1.1 LESSON 1 Learning Worksheet Fundamentals After completing this lesson, you will be able to: Create a workbook. Create a workbook from a template. Understand Microsoft Excel window elements. Select

More information

Excel Forecasting Tools Review

Excel Forecasting Tools Review Excel Forecasting Tools Review Duke MBA Computer Preparation Excel Forecasting Tools Review Focus The focus of this assignment is on four Excel 2003 forecasting tools: The Data Table, the Scenario Manager,

More information

Getting Started with Excel

Getting Started with Excel Getting Started with Excel Excel Files The files that Excel stores spreadsheets in are called workbooks. A workbook is made up of individual worksheets. Each sheet is identified by a sheet name which appears

More information

EXCEL AS BUSINESS ANALYSIS TOOL. 10-May-2015

EXCEL AS BUSINESS ANALYSIS TOOL. 10-May-2015 EXCEL AS BUSINESS ANALYSIS TOOL 10-May-2015 TOUCH POINTS Part A- Excel Shortcuts Part B: Useful Excel Functions Part C: Useful Excel Formulas Part D: Sheet and Cell Protection Part A: EXCEL SHORTCUTS EXCEL

More information

MODULE III: NAVIGATING AND FORMULAS

MODULE III: NAVIGATING AND FORMULAS MODULE III: NAVIGATING AND FORMULAS Copyright 2012, National Seminars Training Navigating and Formulas Using Grouped Worksheets When multiple worksheets are selected, the worksheets are grouped. If you

More information

Training on Demand. Excel 2010 Advanced. Training Workbook. 1 P a g e w w w. t r a i n i n g o n d e m a n d. c o.

Training on Demand. Excel 2010 Advanced.   Training Workbook. 1 P a g e w w w. t r a i n i n g o n d e m a n d. c o. Training on Demand Excel 2010 Advanced Training Workbook www.trainingondemand.co.nz 1 P a g e w w w. t r a i n i n g o n d e m a n d. c o. n z TABLE OF CONTENTS Module One: Getting Started...1 Workbook

More information

Excel 2007 New Features Table of Contents

Excel 2007 New Features Table of Contents Table of Contents Excel 2007 New Interface... 1 Quick Access Toolbar... 1 Minimizing the Ribbon... 1 The Office Button... 2 Format as Table Filters and Sorting... 2 Table Tools... 4 Filtering Data... 4

More information

Excel 2010 Functions. 4/18/2011 Archdiocese of Chicago Mike Riley

Excel 2010 Functions. 4/18/2011 Archdiocese of Chicago Mike Riley Excel 2010 Functions 4/18/2011 Archdiocese of Chicago Mike Riley i VIDEO TUTORIALS AVAILABLE Almost 100,000 video tutorials are available from VTC. The available tutorials include Windows 7, GroupWise

More information