MICROSOFT EXCEL 2002 (XP): LEVEL 3

Size: px
Start display at page:

Download "MICROSOFT EXCEL 2002 (XP): LEVEL 3"

Transcription

1 MICROSOFT EXCEL 2002 (XP): LEVEL 3 WWP Training Limited Page 1

2 STUDENT EDITION LESSON 1 - USING LOGICAL LOOKUP AND ROUND FUNCTIONS... 7 Using Lookup Functions... 8 Using the VLOOKUP Function... 8 Using the HLOOKUP Function...10 Using the IF Function...12 Using Nested IF Functions...14 Using the ISERROR Function...16 Using an AND Condition with IF...18 Using an OR Condition with IF...19 Using the ROUND Function...20 Limiting the Precision of Numbers...21 Exercise...23 Using Advanced Functions...23 LESSON 2 - USING AUDITING TOOLS...25 Displaying the Formula Auditing Toolbar...26 Displaying/Removing Dependent Arrows...26 Displaying/Removing Precedent Arrows...28 Removing All Tracer Arrows...29 Using the Trace Error Button...29 Tracing Cells Causing Errors...31 Using the Error Checking Button...32 Using the Evaluate Formula Button...33 Using the Watch Window...34 Exercise...37 Using Auditing Tools...37 LESSON 3 - WORKING WITH OUTLINES...39 Applying an Outline...40 Collapsing/Expanding an Outline...41 Modifying Outline Settings...42 Clearing an Outline...43 Using Auto Outline...44 Exercise...46 Page 2 WWP Training Limited

3 Working with Outlines LESSON 4 - CONSOLIDATING WORKSHEETS Consolidating Worksheets Consolidating by Category Consolidating by Position Exercise Consolidating Worksheets LESSON 5 - WORKING WITH DATA VALIDATION AND SUBTOTALS.. 55 Using Data Validation Validating Data using a List Creating a Custom Error Message Removing Data Validation Creating Subtotals in a List Removing Subtotals from a List Exercise Working with Data Validation and Subtotals LESSON 6 - USING CONDITIONAL AND CUSTOM FORMATS Applying Conditional Formats Changing a Conditional Format Adding a Conditional Format Deleting a Conditional Format Creating a Custom Format Exercise Using Conditional and Custom Formats LESSON 7 - WORKING WITH COMMENTS Creating Comments Viewing a Comment Using the Reviewing Toolbar Printing Comments Responding to Discussion Comments Exercise Working with Comments LESSON 8 - USING WORKSHEET PROTECTION Unlocking Cells in a Worksheet Protecting a Worksheet Unprotecting a Worksheet WWP Training Limited Page 3

4 Creating Allow-Editing Ranges...83 Deleting Allow-Editing Ranges...85 Protecting Workbook Windows...86 Unprotecting Workbook Windows...87 Assigning a Password...87 Opening a Password-protected File...89 Removing a Password...89 Setting Manual Calculation...90 Resetting Automatic Calculation...92 Using the Document Recovery Pane...92 Exercise...94 Using Worksheet Protection...94 LESSON 9 - CREATING/REVISING PIVOTTABLES...95 Creating a PivotTable Report...96 Adding PivotTable Report Fields...97 Selecting a Page Field Item...99 Refreshing a PivotTable Report Changing the Summary Function Adding New Fields to a PivotTable Report Moving PivotTable Report Fields Hiding/Unhiding PivotTable Report Items Deleting PivotTable Report Fields Creating a Page Field Report Formatting a PivotTable Report Creating a PivotChart Report Publishing PivotTable Reports to the Web Adding Fields to a PivotTable - Browser Using a PivotTable List Exercise Creating/Revising PivotTables LESSON 10 - WORKING WITH ADVANCED FILTERS Creating a Criteria Range Using a Criteria Range Showing All Records Using Comparison Criteria Using an Advanced And Condition Using an Advanced Or Condition Page 4 WWP Training Limited

5 Copying Filtered Records Using Database Functions Exercise Working with Advanced Filters INDEX WWP Training Limited Page 5

6

7 LESSON 1 - USING LOGICAL LOOKUP AND ROUND FUNCTIONS In this lesson, you will learn how to: Use lookup functions Use the VLOOKUP function Use the HLOOKUP function Use the IF function Use nested IF functions Use the ISERROR function Use an AND condition with IF Use an OR condition with IF Use the ROUND function Limit the precision of numbers

8 Lesson 1 - Using Logical Lookup and Round Functions Excel 2002 (XP): Level 3 USING LOOKUP FUNCTIONS Discussion Lookup functions look up values in a lookup table and return a result based on those values. For example, if you need to look up the amount of a health insurance deduction based on an employee s salary and type of coverage, you can use a lookup function to look up the salary and the type of coverage and return the amount of the deduction. Before you can use a lookup function, you must create the lookup table elsewhere in the workbook and enter the desired data. This table must be sorted in ascending order. There are two lookup functions: vertical and horizontal. The VLOOKUP function expects the lookup value to be in the first column. The HLOOKUP function expects the lookup value to be in the first row. The remaining arguments in the lookup function specify the location of the table of information and the column in which to find the matching value. USING THE VLOOKUP FUNCTION Discussion The VLOOKUP function consists of three required arguments, in the following order: lookup value, table array, and column index number. The lookup value is the value for which you want to find matching data and must appear in the first column of the lookup table; it can be a value, a text string, or a cell reference. The table array is the name or address of the lookup table. The column index number is the number of columns Excel must count over to find the matching value. For example, you may have a parts table consisting of three columns, with the part numbers in column one and the prices in column three. To look up the price for a specified part number (lookup value), you would enter a column index value of 3; Excel would then look for the lookup value in the first column of the parts table and return the value in the third column of the same row. You might want to use the lookup table shown below and a column index number of 2 to look up the percent of commission to be paid to a salesperson, based on various sales levels. For example, if the sales figure you want to look up is 6000, the commission would be 6%; Excel finds the lookup value (6000) in the first column and returns the value in the second column of the same row. A 1 SALES COMMISSION % % % B Page 8 WWP Training Limited

9 Excel 2002 (XP): Level 3 Lesson 1 - Using Logical Lookup and Round Functions A % % % % % The VLOOKUP function also has a optional fourth argument, range lookup, which can be either TRUE or FALSE. If the range lookup argument is FALSE, VLOOKUP will find only exact matches. If the range lookup argument is TRUE, or if a range lookup argument is not entered, VLOOKUP can find approximate matches. In this case, the lookup table must be sorted in ascending order by the first column in it; otherwise VLOOKUP may not return the correct value. If the range lookup argument is TRUE or omitted and the lookup value does not appear in the first column of the lookup table, but falls between two values in it, Excel will use the lower of the two values. If the lookup value is smaller than any value in the first column of the lookup table, Excel returns an error message. For example, using the lookup table shown above and a column index number of 2, if the sales figure you look up is 5700, the commission would be 5%. Since Excel determines that 5700 is located between the numbers 5000 and 6000, it returns the value in the second column of the same row as the lower number. B Creating a VLOOKUP function In order to copy a VLOOKUP function to other cells, its table array argument must be an absolute reference. Since named ranges are always absolute references, you can assign a name to your lookup table and use that name in the VLOOKUP function. WWP Training Limited Page 9

10 Lesson 1 - Using Logical Lookup and Round Functions Excel 2002 (XP): Level 3 Procedures 1. Select the cell in which you want the result of the VLOOKUP function to appear. 2. Type =vlookup and an open parenthesis ( ( ). 3. Select the cell containing the value you want to look up. 4. Type a comma (, ). 5. Type the name or address of the lookup table. 6. Type a comma (, ). 7. Enter the column index number. 8. Type the closing parenthesis ( ) ). 9. Press [Enter]. USING THE HLOOKUP FUNCTION Discussion The HLOOKUP function consists of three required arguments, in the following order: lookup value, table array, and row index number. The lookup value is the value for which you want to find matching data and must appear in the top row of the lookup table; it can be a value, a text string, or a cell reference. The table array is the name or address of the lookup table. The row index number is the number of rows Excel must count down to find the matching value. For example, you might have a lookup table consisting of two rows, with the total order amount in the top row and the corresponding shipping charge in the second row. To look up the shipping charge for a specified order amount (lookup value), you would enter a row index value of 2; Excel would then look for the lookup value in the top row of the lookup table and return the value in the second row of the same column. You might want to use the lookup table shown below and a row index number of 2 to look up the percent of commission to be paid to a salesperson, based on various sales levels. For example, if the sales figure you want to look up is 6000, the commission would be 6%; Excel finds the lookup value (6000) in the top row and returns the value in the second row of the same column. A B C D E F G H % 2% 3% 4% 5% 6% 7% 8% The HLOOKUP function also has a optional fourth argument, range lookup, which can be either TRUE or FALSE. If the range lookup argument is FALSE, HLOOKUP will Page 10 WWP Training Limited

11 Excel 2002 (XP): Level 3 Lesson 1 - Using Logical Lookup and Round Functions find only exact matches. If the range lookup argument is TRUE, or if a range lookup argument is not entered, HLOOKUP can find approximate matches. In this case, the lookup table must be sorted in ascending order by its top row; otherwise HLOOKUP may not return the correct value. If the range lookup argument is TRUE or omitted and the lookup value does not appear in the top row of the lookup table, but falls between two values in it, Excel uses the lower of the two values. If the lookup value is smaller than any value in the top row of the lookup table, Excel returns an error message. For example, using the lookup table shown above and a row index number of 2, if the sales figure you look up is 5700, the commission would be 5%. Since Excel determines that 5700 is located between the numbers 5000 and 6000, it returns the value in the second row of the same column as the lower number. Creating an HLOOKUP function In order to copy a HLOOKUP function to other cells, its table array argument must be an absolute reference. Since named ranges are always absolute references, you can assign a name to your lookup table and use that name in the HLOOKUP function. You can use the Options button in the Sort dialog box to sort a range by row. WWP Training Limited Page 11

12 Lesson 1 - Using Logical Lookup and Round Functions Excel 2002 (XP): Level 3 Procedures 1. Select the cell in which you want the result of the HLOOKUP function to appear. 2. Type =hlookup and an open parenthesis ( ( ). 3. Select the cell containing the value you want to look up. 4. Type a comma (, ). 5. Type the name or address of the lookup table. 6. Type a comma (, ). 7. Enter the row index number. 8. Type a closing parenthesis ( ) ). 9. Press [Enter]. USING THE IF FUNCTION Discussion Logical functions make decisions based on criteria. If the criteria evaluate to true, one action is taken; if the criteria evaluate to false, a different action is taken. This decision-making capability of logical functions can be applied to many different situations. You can use a logical function to decide if a customer receives a discount for goods ordered. If an ordered value is greater than the specified amount, the customer receives a discount. If an ordered value is less than the specified amount, the customer does not receive a discount. The IF function returns one value if a condition is true and another value if a condition is false. In the example above, if the value of the goods shipped is greater than the specified amount, a true value would be returned. If the shipped value is less than the specified amount, a false value would be returned. You can also use the IF function to display text as a result of a logical test, but you must enclose the text you want to display in quotation marks. The syntax of an IF function is: =IF(logical test,value if true,value if false) The function arguments are described in the following table: Page 12 WWP Training Limited

13 Excel 2002 (XP): Level 3 Lesson 1 - Using Logical Lookup and Round Functions Component logical test Description The test condition. It can contain cell references, text in quotes, cell names, and numbers. The items are compared using the following comparison operators: = equal to <> not equal to > greater than >= greater than or equal to < less than <= less than or equal to value if true value if false The desired result if the logical test is true. It can be a number, formula, cell reference, cell name, text in quotes, or another function. The desired result if the logical test is false. It can be a number, formula, cell reference, cell name, text in quotes, or another function. Some examples of the IF function are listed in the following table: IF Function =IF(B7>10,C7*.1,0) =IF(B7<=10,C7*.1,D7*.1) =IF(B7<>10,"GOOD","") =IF(B7="BONUS",C7+1000,C7) Result If the number in cell B7 is greater than 10, multiply the number in cell C7 by.1; otherwise, return the number 0 If the number in cell B7 is less than or equal to 10, multiply the number in cell C7 by.1; otherwise, multiply the number in cell D7 by.1 If the number in cell B7 is not equal to 10, enter the text GOOD in the current cell; otherwise, leave the cell blank If cell B7 contains the text BONUS, add 1000 to the number in cell C7; otherwise, enter the contents of cell C7 WWP Training Limited Page 13

14 Lesson 1 - Using Logical Lookup and Round Functions Excel 2002 (XP): Level 3 Creating an IF function Procedures 1. Select the cell in which you want the result of the IF function to appear. 2. Type =if and an open parenthesis ( ( ). 3. Type the logical test. 4. Type a comma (, ). 5. Type the action to be taken if the logical test is true. 6. Type a comma (, ). 7. Type the action to be taken if the logical test is false. 8. Type the closing parentheses ( ) ). 9. Press [Enter]. USING NESTED IF FUNCTIONS Discussion You can use an IF function within another IF function to create a nested IF function. A nested IF function allows you to test for a second condition if the first condition is found false. For example, an IF function could test whether or not a number is equal to Page 14 WWP Training Limited

15 Excel 2002 (XP): Level 3 Lesson 1 - Using Logical Lookup and Round Functions 1. If false, another IF function within the first could test whether or not the number is equal to 2. The syntax of a nested IF function is: =IF(logical test,value if true,if(logical test,value if true,value if false)) You can create up to seven nested IF functions within an IF function. Creating a nested IF function You must close all parentheses in a nested IF function; i.e., the number of open parentheses must equal the number of closing parentheses. Procedures 1. Select the cell in which you want the result of the nested IF function to appear. 2. Type =if and an open parenthesis ( ( ). 3. Type the first logical test. 4. Type a comma (, ). 5. Type the action to be taken if the first logical test is true. 6. Type a comma (, ). 7. Type if and an open parenthesis ( ( ). 8. Type the logical test for the second IF function. WWP Training Limited Page 15

16 Lesson 1 - Using Logical Lookup and Round Functions Excel 2002 (XP): Level 3 9. Type a comma (, ). 10. Type the action to be taken if the logical test for the second IF function is true. 11. Type a comma (, ). 12. Type the action to be taken if the second logical test is false. 13. Type two closing parentheses ( )) ). 14. Press [Enter]. USING THE ISERROR FUNCTION Discussion Depending upon the circumstances, a function may return an error message instead of performing the desired calculation. For instance, a function that averages a range will return a #DIV/0! error message if the range contains no data. The ISERROR function is commonly used within an IF function to handle errors messages returned by a formula. The ISERROR function tests TRUE if any of the following error messages are returned by a formula: #N/A, #VALUE, #REF, #DIV/0!, #NUM, #NAME?, or #NULL. It tests FALSE if anything other than an error message is returned. The ISERR function is similar to the ISERROR function, except that it does not respond to the error value #N/A. The syntax of these functions is as follows, where (value) is a cell reference or range name: ISERROR(value) ISERR(value) Page 16 WWP Training Limited

17 Excel 2002 (XP): Level 3 Lesson 1 - Using Logical Lookup and Round Functions Using the ISERROR function If you are unsure of the contents of one or more cells on which the calculations are being made, you can use the ISERROR function because it provides a result regardless of the error condition. Procedures 1. Select the cell in which you want the result of the IF function to appear. 2. Type =if and an open parenthesis ( ( ). 3. Type the ISERROR function as the logical test. 4. Type a comma (, ). 5. Type the action to be taken if the ISERROR function is true. 6. Type a comma (, ). 7. Type the action to be taken if the ISERROR function is false. 8. Type the closing parenthesis ( ) ). 9. Press [Enter]. WWP Training Limited Page 17

18 Lesson 1 - Using Logical Lookup and Round Functions Excel 2002 (XP): Level 3 USING AN AND CONDITION WITH IF Discussion You can use AND conditions to test multiple criteria in IF functions. For example, you may want to give a salesperson a $500 bonus if he or she produces $10,000 in sales and has at least five years experience. This example represents an AND condition. When used in an IF function, an AND condition returns a TRUE value if both arguments are true and a FALSE value if either argument is false. The syntax of an AND condition is: =IF(AND(logical test1,logical test2),value if true,value if false) Creating an AND condition in an IF function Procedures 1. Select the cell in which you want the result of the IF function to appear. 2. Type =if and an open parenthesis ( ( ). 3. Type the AND condition. 4. Type a comma (, ). 5. Type the action to be taken if both conditions are true. 6. Type a comma (, ). 7. Type the action to be taken if either condition is false. Page 18 WWP Training Limited

19 Excel 2002 (XP): Level 3 Lesson 1 - Using Logical Lookup and Round Functions 8. Type a closing parenthesis ( ) ). 9. Press [Enter]. USING AN OR CONDITION WITH IF Discussion You can use OR conditions to test multiple criteria in IF functions. For example, you may want to give a salesperson a $500 bonus if he or she produces $10,000 in sales or if he or she has at least five years experience. This example represents an OR condition. When used in an IF function, the OR condition returns a TRUE value if either argument is true and a FALSE value if both arguments are false. The syntax of an OR condition is: =IF(OR(logical test1,logical test2),value if true,value if false) Creating an OR condition in an IF function Procedures 1. Select the cell in which you want the result of the IF function to appear. 2. Type =if and an open parenthesis ( ( ). 3. Type the OR condition. WWP Training Limited Page 19

20 Lesson 1 - Using Logical Lookup and Round Functions Excel 2002 (XP): Level 3 4. Type a comma (, ). 5. Type the action to be taken if either of the conditions is true. 6. Type a comma (, ). 7. Type the action to be taken if both conditions are false. 8. Type the closing parenthesis ( ) ). 9. Press [Enter]. USING THE ROUND FUNCTION Discussion When you enter a number into an Excel worksheet, Excel can store it with up to 15 digits. Although you can format numbers so that Excel rounds off extra decimal places, Excel uses all decimal places in calculations. This feature can lead to some calculations appearing incorrect. Rounding a number is different than formatting a number. When you round a number to a certain number of decimal places, the extra decimal places are removed and all calculations are performed using the rounded value. The ROUND function includes the following two arguments: ROUND(number,number of digits) The number argument can be a value or a cell address. The number of digits argument determines the precision of the rounded number. A positive number of digits argument returns an equal number of decimal places. If the number of digits argument is 0, Excel rounds to the next whole number. A negative number of digits argument rounds exponentially to the next ten, hundred, thousand, etc. Some examples of the ROUND function are listed in the following table: ROUND function =ROUND( ,1) =ROUND( ,2) =ROUND( ,0) =ROUND( ,-1) =ROUND(B7,2) Cell displays (one decimal place) (two decimal places) 4567 (no decimal places) 4570 (rounds to the nearest ten) The value in cell B7 rounded to two decimal places =ROUND(B7*.1,2) The result of the number in cell B7 times.1, rounded to two decimal places Page 20 WWP Training Limited

21 Excel 2002 (XP): Level 3 Lesson 1 - Using Logical Lookup and Round Functions Creating a ROUND function Procedures 1. Select the cell in which you want the result of the ROUND function to appear. 2. Type =round and an open parenthesis ( ( ). 3. Type the value, formula, cell address, or function you want to round, followed by a comma. 4. Type the desired number of decimal places. 5. Type the closing parenthesis ( ) ). 6. Press [Enter]. LIMITING THE PRECISION OF NUMBERS Discussion In order to calculate a worksheet using the numbers as they are displayed, you can limit the precision of formatted numbers. Limiting the precision changes the actual values in the worksheet to their formatted versions. For example, if a cell containing an actual value of is formatted with no decimal places, only 123 will display. In a calculation, however, Excel will still use (the entire number, including all decimal places). If you limit the precision of the cell to the formatted value, Excel will WWP Training Limited Page 21

22 Lesson 1 - Using Logical Lookup and Round Functions Excel 2002 (XP): Level 3 use only the formatted value (123) in calculations and will actually remove all decimal places in the stored number. Limiting the precision of numbers Be careful when limiting the precision of numbers because you cannot undo it. You can, however, restore your original numbers if you immediately exit the worksheet without saving the changes. Procedures 1. Select the Tools menu. 2. Select the Options command. 3. Select the Calculation tab. 4. Select the Precision as displayed option. 5. Select OK. 6. Select OK. Page 22 WWP Training Limited

23 Excel 2002 (XP): Level 3 Lesson 1 - Using Logical Lookup and Round Functions EXERCISE USING ADVANCED FUNCTIONS Task Use advanced functions in a workbook. 1. Open Functex. 2. Display the Hours worksheet, if necessary. 3. Select cell F6 and use the VLOOKUP function to calculate the pay rate for full-time, part-time, or overtime work, according to job type. (Hint: The lookup value is the Job Type in C6, the lookup table is named table, and the column index number is the Type of Time in E6.) 4. Copy the formula to the range F7:F Display the Sales-Previous worksheet. 6. Customers get free shipping if their average sales are more than 20,000. In cell I5, use an IF function to test the average sales. If the average sales (H5) are greater than or equal to 20,000, Yes should appear in the cell; otherwise, No should appear in the cell. (Hint: Do not add a comma in ) 7. Copy the formula to the range I6:I The customer discount depends on the customer status. In cell J5, use a nested IF function to determine the correct discount for each customer according to the following table. (Hint: Test to see if the status in cell B5 is a 1, 2, or 3; otherwise, a discount of 10% is entered.) Status Discount 1 0% 2 5% 3 7.5% 4 10% 9. Copy the formula to the range J6:J A customer status of 2 or 4 indicates a long-standing, good credit history and the customer credit limit should be raised by 5%; all other credit limits will remain the same. In cell K5, use an OR condition in an IF function to display which customers should have their credit limits raised. Display 5% or 0% in the cells accordingly. 11. Copy the formula in cell K5 to K6:K13. WWP Training Limited Page 23

24 Lesson 1 - Using Logical Lookup and Round Functions Excel 2002 (XP): Level Display the Sales-Current worksheet. 13. In cell C16, use an ISERROR function in an IF function to change the #DIV/0! message to No data. Copy the formula to the range D16:F Display the Commissions worksheet. 15. Use the ROUND function to round the results of the commission formula in cell C5 to two decimal places. (Hint: Modify the existing formula in C5.) Then, copy the formula to the range C6:C Format the numbers in the range B5:B13 so that no decimal places appear. 17. Limit the precision of numbers. Notice that the values in C5:C13 change accordingly. 18. Close the workbook without saving it. Page 24 WWP Training Limited

25 LESSON 2 - USING AUDITING TOOLS In this lesson, you will learn how to: Display the Formula Auditing toolbar Display/Remove dependent arrows Display/Remove precedent arrows Remove all tracer arrows Use the Trace Error button Trace cells causing errors Use the Error Checking button Use the Evaluate Formula button Use the Watch Window

26 Lesson 2 - Using Auditing Tools Excel 2002 (XP): Level 3 DISPLAYING THE FORMULA AUDITING TOOLBAR Discussion The Formula Auditing toolbar provides tools that allow you to examine the association between cells and formulas in a worksheet. For example, you can use the Formula Auditing toolbar, to locate cells that are causing errors in formulas. By default, the Formula Auditing toolbar is a floating toolbar that can be moved to any location in the workspace. The Formula Auditing toolbar If the buttons on the Formula Auditing toolbar are not available, select the Tools menu, the Options command, and the View page. Then, make sure that either the Show all or Show placeholders option under Objects is selected. The Formula Auditing tools are also available on the Formula Auditing submenu on the Tools menu. Procedures 1. Right-click any toolbar. 2. Select the Formula Auditing command. DISPLAYING/REMOVING DEPENDENT ARROWS Discussion You can locate all formulas that reference a specific cell. Cells that reference data in another cell are called the dependents of that cell. If a cell is referenced by multiple formulas, it has multiple dependents; if a cell is referenced by only one formula, it has only one dependent. You can display all dependents of the active cell. This information will tell you which formulas are affected when you change the data in that cell. For example, if you are Page 26 WWP Training Limited

27 Excel 2002 (XP): Level 3 Lesson 2 - Using Auditing Tools changing a shipping rate in an order entry worksheet, you may want to see which cells have that particular shipping rate in their formulas, and in turn, which orders will be affected by the change. You can display just direct dependents (those cells containing formulas which depend directly on the active cell) or dependents at all levels (cells containing all formulas which reference the active cell, either directly or indirectly). Excel displays dependent cells with blue tracer arrows that lead from the active cell to each dependent. If a formula contains an error, the tracer arrows are red. If the dependent cell is on a different worksheet, a black arrow points to a worksheet symbol. Once dependent tracer arrows are displayed, each subsequent click of the Trace Dependents button displays additional dependent levels. Your system will beep when there are no more additional levels. You can use the Remove Dependent Arrows button to easily remove tracer arrows from the display. Tracer arrows are removed one level at a time. Displaying dependent cells To select the cell at the other end of a blue or red tracer arrow, you can double-click the arrow. To select the cell at the other end of the black arrow, double-click the arrow, select the cell address in the Go To dialog box, and then select OK. Procedures 1. Display the Formula Auditing toolbar. 2. Select the cell which has dependents you want to view. WWP Training Limited Page 27

28 Lesson 2 - Using Auditing Tools Excel 2002 (XP): Level 3 3. Click the Trace Dependents button on the Formula Auditing toolbar. 4. Click the Trace Dependents button on the Formula Auditing toolbar to view additional dependent levels, as applicable. 5. Click the Remove Dependent Arrows button on the Formula Auditing toolbar as necessary to hide all dependent levels. DISPLAYING/REMOVING PRECEDENT ARROWS Discussion You can locate all the cells to which a formula refers. The referenced cells are called the precedents of the cell containing the formula. You can display all the precedent cells of the active cell. Since precedent cells provide data for the formula in the active cell, you can use this information to determine if the formula is using the correct information. For example, if the total price in an order entry worksheet does not seem correct, you can examine its precedents to determine if the price is in error. Excel displays precedent cells with blue tracer arrows that lead from each precedent cell to the active cell. If a formula contains an error, a red tracer arrow indicates the precedent cell that is the direct cause of the error. If a precedent cell is on a different worksheet, a black arrow points to a worksheet symbol. You can display direct precedents (cells referenced directly by the formula in the active cell) or precedents at all levels (all cells referenced by the formula, either directly or indirectly). Once precedent cells are displayed, each subsequent click of the Trace Precedents button displays additional precedent levels. Your system will beep when there are no additional precedent levels. You can use the Remove Precedent Arrows button to easily hide precedent cells from the display. the tracer arrows are removed one level at a time. To select the cell at the other end of a blue or red tracer arrow, you can double-click the arrow. To select the cell at the other end of the black arrow, double-click the arrow, select the cell address in the Go To dialog box, and then select OK. Page 28 WWP Training Limited

29 Excel 2002 (XP): Level 3 Lesson 2 - Using Auditing Tools Procedures 1. Display the Formula Auditing toolbar. 2. Select the cell which has precedents you want to view. 3. Click the Trace Precedents button on the Formula Auditing toolbar. 4. Click the Trace Precedents button on the Formula Auditing toolbar to view additional precedent levels, as applicable. 5. Click the Remove Precedent Arrows button on the Formula Auditing toolbar as necessary to hide all precedent levels. REMOVING ALL TRACER ARROWS Discussion Since dependent and precedent tracer arrows print with a worksheet, you can remove them to print the worksheet. You can remove just the dependent tracer arrows, just the precedent tracer arrows, or all tracer arrows. Procedures 1. Display the Formula Auditing toolbar. 2. Click the Remove All Arrows button on the Formula Auditing toolbar. USING THE TRACE ERROR BUTTON Discussion Excel provides automatic error checking smart tags to help you correct errors in formulas. These predefined formula errors are determined by rules designed to find formulas with common mistakes. These rules are described in the following table. WWP Training Limited Page 29

30 Lesson 2 - Using Auditing Tools Excel 2002 (XP): Level 3 Rules Evaluates to an error value Text date with 2 digit year Number stored as text Inconsistent formula in region Formulas omits cells in region Unlocked cells containing formulas Formulas referring to empty cells Description The formula syntax appears to be incorrect A two-digit year could be computed in the wrong century Numbers formatted as text may sort improperly The formula does not match the reference sequence of adjacent formulas The formula does not contain the entire range of cells to be calculated The formulas in unlocked cells can be inadvertently changed The formula references empty cells Every cell containing an incorrect formula is earmarked with a comment marker in its top, left corner. When you select a cell with a formula error, the Trace Error button appears. Pointing to the Trace Error button displays a ScreenTip that describes the identified error. Clicking the Trace Error button displays an explanation of the detected error, as well as a list of commands that allow you to correct the error, ask for help in correcting the error, ignore the error, edit the error, or display the Error Checking page in the Options dialog box. Using the Trace Error button Page 30 WWP Training Limited

31 Excel 2002 (XP): Level 3 Lesson 2 - Using Auditing Tools The Trace Error button will not appear unless the Enable background error checking option is selected on the Error Checking page in the Options dialog box. Procedures 1. Select any cell with a formula error. 2. Click the Trace Error button adjacent to the active cell. 3. Select the desired command. TRACING CELLS CAUSING ERRORS Discussion If a formula results in an error (such as #REF), you can determine whether the error is the result of an error in the formula itself or of an error in a precedent formula. For example, if the formula in an order entry worksheet that calculates the shipping rate results in an error, you can identify whether a price formula referenced by the shipping rate formula is in error or whether the problem is in the shipping rate formula itself. When you trace errors, red tracer arrows indicate formulas that are in error. You can then examine and determine which cells are causing the problem. If the error is not caused by an error in another formula, but is the result of an error in the active cell, only blue arrows will appear. You can then examine the active cell to determine whether the values or the formula itself are causing the problem. In addition to tracer arrows, the Trace Error button appears adjacent to the active cell if it contains an error. Clicking the Trace Error button displays a list of error checking commands, including the reason the formula was flagged. You can double-click any tracer arrow to select the cell at its other end. You can use the Validation command on the Data menu to set restrictions on the data entered into a cell. The Circle Invalid Data button on the Formula Auditing toolbar circles any cell with data that does not meet the validation criteria set for that cell. WWP Training Limited Page 31

32 Lesson 2 - Using Auditing Tools Excel 2002 (XP): Level 3 Procedures 1. Display the Formula Auditing toolbar. 2. Select any cell containing an error. 3. Click the Trace Error button on the Formula Auditing toolbar. USING THE ERROR CHECKING BUTTON Discussion The Error Checking button on the Formula Auditing toolbar helps you locate cells that contain one of several predefined formula errors. An error check identifies errors based on rules designed to find formulas with common mistakes. It finds dates entered with a two-digit year, numbers entered as text, and inconsistent formulas, as well as skipped cells in formulas, formulas that refer to empty cells, and formulas in unlocked cells. The Error Checking button is an efficient method of checking the entire worksheet for errors. The error check begins at the current cell and steps from one incorrect cell to the next. The information in the Error Checking dialog box changes, depending on the type of error encountered. You can automatically correct the formula error, ask for help in correcting the error, ignore the error, or edit the error. You are notified when all errors in the worksheet have been corrected. Performing an error check The Options button in the Error Checking dialog box allows you to select or deselect error checking rules as desired. Page 32 WWP Training Limited

33 Excel 2002 (XP): Level 3 Lesson 2 - Using Auditing Tools Procedures 1. Display the Formula Auditing toolbar. 2. Click the Error Checking button on the Formula Auditing toolbar. 3. Select the desired buttons in the Error Checking dialog box. 4. To manually correct an error, select the Edit in Formula Bar button. 5. Correct the formula as needed. 6. Select the Resume button in the Error Checking dialog box to continue reviewing errors. 7. Correct or ignore any additional errors as desired. 8. When Excel notifies you that the error check is complete, select OK. USING THE EVALUATE FORMULA BUTTON Discussion The Evaluate Formula button on the Formula Auditing toolbar allows you to evaluate each expression in a formula before and after it is calculated. The Evaluate button steps through each expression in the formula, displaying its result within the formula itself. The expression being evaluated is underlined. After each expression has been evaluated, the entire formula is underlined and you can click the Evaluate button once more to display the result of the formula. The Step In and Step Out buttons allow you to step through nested formulas by displaying the selected expression in a separate evaluation box. You can continue stepping into each nested expression until you have evaluated all precedents. To proceed to the next expression in the original formula, you must then step out of each nested expression until only one evaluation box remains. When you have finished evaluating all the expressions, you can click the Evaluate button once more to display the result of the formula. WWP Training Limited Page 33

34 Lesson 2 - Using Auditing Tools Excel 2002 (XP): Level 3 Evaluating a formula Procedures 1. Display the Formula Auditing toolbar. 2. Select the cell containing the formula you want to evaluate. 3. Click the Evaluate Formula button on the Formula Auditing toolbar. 4. Select Evaluate to view the result of the underlined expression. 5. Select Step In to evaluate a nested expression. 6. Select Step Out to return to the original formula. 7. Evaluate additional expressions until the entire formula is underlined. 8. When the entire formula is underlined, select Evaluate one more time. 9. Select Restart to evaluate the formula again or Close to end the evaluation. USING THE WATCH WINDOW Discussion You can use the Watch Window to view one or more ranges of cells in one convenient location. The Watch Window can be used to select and display cells containing any type of data. It displays the location and content of cells in columnar rather than spreadsheet format, making it easier to view cells that do not appear in the worksheet window. Page 34 WWP Training Limited

35 Excel 2002 (XP): Level 3 Lesson 2 - Using Auditing Tools The Watch Window can help you keep track of how your current changes affect related cells in another area of the same worksheet or in a different worksheet. To add cells from another workbook to the Watch Window, that workbook must be open. Although the Watch Window functions as a window, it is actually a toolbar. Therefore, you can drag it to any desired position in the window or dock it along any edge. In addition, you can work in the worksheet while the Watch Window is open, as well as display the Watch Window from the toolbar shortcut menu. The Watch Window To delete information from the Watch Window toolbar, select the row or rows you want to delete and then select the Delete Watch button or press the [Delete] key. You can also right-click any cell and select the Add Watch command to add individual cells to the Watch Window toolbar. This action displays the Watch Window toolbar with the new entry added. You can also display the Watch Window toolbar by rightclicking any toolbar and selecting the Watch Window command. Procedures 1. Display the Formula Auditing toolbar. 2. Click the Show Watch Window button on the Formula Auditing toolbar. 3. Select the range you want to add to the Watch Window. 4. Select the Add Watch button in the Watch Window. 5. Select Add in the Add Watch dialog box. WWP Training Limited Page 35

36 Lesson 2 - Using Auditing Tools Excel 2002 (XP): Level 3 Page 36 WWP Training Limited

37 Excel 2002 (XP): Level 3 Lesson 2 - Using Auditing Tools EXERCISE USING AUDITING TOOLS Task Use the Excel Auditing tools. 1. Open Comm Display the Bonuses worksheet, if necessary. 3. Display the Formula Auditing toolbar. 4. Display all dependent cells for cell E8. Then, hide one level of tracer arrows. 5. Display all precedent cells for cell I14. Then, hide one level of tracer arrows. 6. Hide all displayed tracer arrows. 7. Select cell F14, which contains an error. Use the Trace Error button on the Formula Auditing toolbar to display its tracer arrows. Notice that the error is caused by an error in the formula in cell F9. 8. Select cell F9 and correct the formula to =E9/$E$ Copy the formula in cell F9 to the range F10:F13 to correct all the formulas. 10. Select the Checking worksheet. Select cell B14 and use the Trace Error button to correct the formula error in it. (Hint: Select the option to update the formula to include cells B12 and B13.) 11. Use the Error Checking tool on the Formula Auditing toolbar to correct the errors in cells B4, B5, E11, and D14. Ignore the error in F Evaluate all expressions in the formula in cell I Add cells I8:I13 to the Watch Window. 14. Right-click cell C14 and add it to the Watch Window. 15. Delete all cells from the Watch Window and then close the Watch Window. 16. Hide the Formula Auditing toolbar. 17. Close the workbook without saving it. WWP Training Limited Page 37

38

39 LESSON 3 - WORKING WITH OUTLINES In this lesson, you will learn how to: Apply an outline Collapse/Expand an outline Modify outline settings Clear an outline Use Auto Outline

40 Lesson 3 - Working with Outlines Excel 2002 (XP): Level 3 APPLYING AN OUTLINE Discussion Outlining a worksheet makes it easier to understand and analyze information. Outlines divide a worksheet into logical units or levels. Lower levels usually contain the detail data associated with a higher level (such as a row or column of summary data). You can use outline levels to group similar information together. Then, you can collapse and expand the outline to control the level of detail that appears. Outlines allow you to see the relationships between detail data and summary data. For example, if a formula in cell A10 totals the numbers in cells A1 through A9, you can use the Outline feature to display a symbol on the left side of the worksheet, showing that the total in row 10 is based on the detail data in rows 1 through 9. Outlining is a convenient way to display summary data. A complex sheet (such as one that contains monthly sales figures for each region of a company) can be large and difficult to use. You must often scroll through detail data to locate the summary data. When you use an outline, you can hide the detail data in order to display only the desired information. In addition, you can print just the summary data. Applying an outline An outline can have up to eight levels of detail. Page 40 WWP Training Limited

41 Excel 2002 (XP): Level 3 Lesson 3 - Working with Outlines Excel assumes that the detail data for rows and columns appears above or to the left of the summary rows and columns. If this is not the case, you can change the direction by selecting the Data menu, pointing to the Group and Outline command, and selecting the Settings command. If you select a group of cells in a worksheet, rather than an entire group of columns or rows, you can indicate how you want the cells grouped by selecting the Rows or Columns option in the Group dialog box. You can open the Group dialog box by selecting the desired cells and then selecting the Data menu, pointing to the Group and Outline command, and then selecting the Group command. Procedures 1. Select the rows or columns that contain the detail data. 2. Select the Data menu. 3. Point to the Group and Outline command. 4. Select the Group command. COLLAPSING/EXPANDING AN OUTLINE Discussion Once you have grouped rows and/or columns into an outline, you can then collapse and expand the outline levels. Collapsing a level hides the detail data for that level. Expanding a level displays the detail data for that level. Expanding and collapsing outline levels allows you to control how much data appears on the screen as well as how much data is printed. WWP Training Limited Page 41

42 Lesson 3 - Working with Outlines Excel 2002 (XP): Level 3 Collapsing an outline You can also use the row and column level outline symbols at the top left corner of the worksheet to expand and collapse an outline. The symbols represent the number of outline levels you want to display. For example, you can click the 1 to display only the data on level 1, the highest level. When you click the 2, the data on both levels 1 and 2 appears. Procedures 1. To collapse an outline level, click the hide detail outline symbol. 2. To expand an outline, click the show detail outline symbol. MODIFYING OUTLINE SETTINGS Discussion When you apply an outline to a worksheet, Excel assumes that the summary data is below the detail rows or to the right of the detail columns. If your worksheet is set up differently, you can change the default settings. You should change the settings before you apply the outlines. Page 42 WWP Training Limited

43 Excel 2002 (XP): Level 3 Lesson 3 - Working with Outlines Modifying outline settings Procedures 1. Select the Data menu. 2. Point to the Group and Outline command. 3. Select the Settings command. 4. Select or deselect the desired options. 5. Select OK. CLEARING AN OUTLINE Discussion You can remove all outline levels to clear an outline from a worksheet. Although all the data remains on the worksheet, the distinctions between detail and summary data are removed. You can clear specific parts of an outline by selecting the grouped rows or columns and ungrouping them. This action moves the rows or columns to the next highest level. If you want to clear the entire outline, do not select any cells. WWP Training Limited Page 43

44 Lesson 3 - Working with Outlines Excel 2002 (XP): Level 3 If you clear an outline by mistake, you must recreate it. You cannot use the Undo feature to reverse the action. Procedures 1. Select the Data menu. 2. Point to the Group and Outline command. 3. Select the Clear Outline command. USING AUTO OUTLINE Discussion You can create an outline automatically on a worksheet using Auto Outline. Excel analyzes your worksheet and creates levels based on the summary formulas it finds. To use Auto Outline, the worksheet must be set up according to the following criteria: 1. The worksheet must have rows or columns that summarize detail data. 2. The orientation of the summary rows or columns to the detail data must be consistent across the worksheet. That is, the summary rows or columns must be consistently above, below, to the right, or to the left of the detail data. If a range is selected, Auto Outline creates an outline for that range only. If only one cell is selected, Auto Outline creates an outline for the entire worksheet. Procedures 1. Select the Data menu. 2. Point to the Group and Outline command. 3. Select the Auto Outline command. Page 44 WWP Training Limited

45 Excel 2002 (XP): Level 3 Lesson 3 - Working with Outlines WWP Training Limited Page 45

46 Lesson 3 - Working with Outlines Excel 2002 (XP): Level 3 EXERCISE WORKING WITH OUTLINES Task Apply and use an outline. 1. Open Region Go to the Expenses worksheet, if necessary. 3. Select columns B through D and apply an outline to the columns. 4. Select rows 5 through 8 and apply an outline to the rows. 5. Collapse and expand the outline. 6. Display the Regional Sales worksheet. 7. Use Auto Outline to create an outline automatically. 8. Display outline level 1 for both rows and columns. Expand the column outline to display levels 1 and Clear the outline. 10. Close the workbook without saving it. Page 46 WWP Training Limited

47 LESSON 4 - CONSOLIDATING WORKSHEETS In this lesson, you will learn how to: Consolidate worksheets Consolidate by category Consolidate by position

48 Lesson 4 - Consolidating Worksheets Excel 2002 (XP): Level 3 CONSOLIDATING WORKSHEETS Discussion You can consolidate data from several worksheets into a single worksheet or from many different workbooks into a single workbook. For example, if you record sales data on several different worksheets, you can quickly consolidate the sum of all the data into a single worksheet. To consolidate data, you must first select the range where you want to display the consolidated information (the consolidation table). The consolidation table can be on the same worksheet as the source data, in a separate worksheet, or even in a separate workbook. You must then select each range from which you want to consolidate information (the data sources). You can consolidate data from a maximum of 255 source ranges. You must also select the desired summary function; Excel provides eleven different summary functions, including Sum, Count, and Average. The source data can be copied or linked to the consolidation table. If the source data is linked to the consolidation table, the consolidation table will be automatically updated each time the source data changes. When Excel consolidates data, a row is added to the consolidation table for each source range. Although these rows are collapsed by default, you can expand them to view the source data. CONSOLIDATING BY CATEGORY Discussion You can consolidate information based on categories. This method is useful when the column or row headings are the same for all the data you want to consolidate, but are positioned differently in each source area. For example, in a workbook tracking sales for several regions, the sales products may be organized differently in each worksheet. You can consolidate by category to sum all the sales products, regardless of their order on the individual worksheets. When you consolidate by category, Excel matches the column or row labels to consolidate the data. Consequently, you must select the column and/or row headings in the consolidation table, as well as in all source areas. A source area can contain categories of information not included in the consolidation table. Excel will only extract source information from categories that appear in the consolidation table. Page 48 WWP Training Limited

49 Excel 2002 (XP): Level 3 Lesson 4 - Consolidating Worksheets Consolidating data by category When you consolidate by category, the labels across each category must be identical; if any one label is misspelled or capitalized differently, that data will not be consolidated. Procedures 1. Open all workbooks from which you want to consolidate data. 2. Select the range for the consolidation table. 3. Select the Data menu. 4. Select the Consolidate command. 5. Select the Function list. 6. Select the desired function. 7. Select the Top row option under Use labels in. 8. Select the Left column option under Use labels in. 9. Select the Create links to source data option, if desired. 10. Click the Collapse Dialog button in the Reference box. 11. Select the first worksheet or workbook containing a source area you want to consolidate. 12. Select the desired source area, including the row and column labels. 13. Click the Expand Dialog button. 14. Select Add. WWP Training Limited Page 49

50 Lesson 4 - Consolidating Worksheets Excel 2002 (XP): Level Click the Collapse Dialog button in the Reference box. 16. Select the next worksheet or workbook containing a source area you want to consolidate. 17. Select the desired source area, including the row and column labels. 18. Click the Expand Dialog button. 19. Select Add. 20. Select additional source areas as desired. 21. Select OK. CONSOLIDATING BY POSITION Discussion You can consolidate information based on the position of the source data. This method is useful when the data appears in the same location or relative position on all the worksheets you want to consolidate. For example, if you have three identical worksheets for three different products in which only the data varies, you can consolidate based on position. When you consolidate by position, you do not need to include the row or column headings when specifying the destination and source ranges. Data consolidated by position Page 50 WWP Training Limited

51 Excel 2002 (XP): Level 3 Lesson 4 - Consolidating Worksheets Source data does not need to be located in identical locations; it can be arranged in the same relative location. For example, the Phone, Hotel, and Meals data can be located in columns B, C, and D in one source and in columns G, H, and I in another. Procedures 1. Open all workbooks from which you want to consolidate data. 2. Select the range for the consolidation table, not including row or column labels. 3. Select the Data menu. 4. Select the Consolidate command. 5. Select the Function list. 6. Select the desired function. 7. Select the Create links to source data option. 8. Click the Collapse Dialog button in the Reference box. 9. Select the first worksheet you want to consolidate. 10. Select the desired source data. 11. Click the Expand Dialog button. 12. Select Add. 13. Add other source data ranges to the All references list box, as necessary. 14. Select OK. WWP Training Limited Page 51

52 Lesson 4 - Consolidating Worksheets Excel 2002 (XP): Level 3 EXERCISE CONSOLIDATING WORKSHEETS Task Consolidate data from several worksheets by position and category. 1. Open Year7. 2. Notice that the data in the Qtr 1 and Qtr 2 worksheets are identically arranged, but with different column and row headings. 3. Display the Semi worksheet. 4. Select the range B4:H8 as the consolidation table and then open the Consolidate dialog box. 5. Use the Sum function and create links to the source data. 6. Select and add the data in B3:H7 in both the Qtr 1 and Qtr 2 worksheets. Then, consolidate the data. 7. Display the Totals worksheet. 8. Select the range A3:E8 as the consolidation table and open the Consolidate dialog box. 9. Use the Sum function and create links to the source data. Because you are consolidating by category, select the Top row and Left column options. 10. Select the data in the range A3:H18 in the Semi worksheet and add it to the All references list box. (Hint: It does not matter if the table is expanded or collapsed.) 11. Select and add the data in A2:K7 in the Qtr 3 worksheet; select and add the data in A2:H11 in the Qtr 4 worksheet. Then, consolidate the data. 12. Apply the Classic 3 AutoFormat. Then, expand the consolidation table to outline level Close the workbook without saving it. Page 52 WWP Training Limited

53 Excel 2002 (XP): Level 3 Lesson 4 - Consolidating Worksheets WWP Training Limited Page 53

54

55 LESSON 5 - WORKING WITH DATA VALIDATION AND SUBTOTALS In this lesson, you will learn how to: Use data validation Validate data using a list Create a custom error message Remove data validation Create subtotals in a list Remove subtotals from a list

56 Lesson 5 - Working with Data Validation and Subtotals Excel 2002 (XP): Level 3 USING DATA VALIDATION Discussion Databases can contain incorrect information due to data entry errors. One method of controlling the accuracy of data entered is to place validation limits on the type of data to be entered and to decide whether or not blank entries are allowed. Using data validation, you can restrict the type of data allowed in a cell and the minimum, maximum, or upper and lower limits for whole numbers, decimals, dates, or times. If the cell will contain text, you can set an upper and lower limit for the number of characters permitted. When a user enters an invalid entry into a cell that contains data restrictions, Excel opens a message box, called an alert, which explains that the entry is not valid and only restricted values can be entered into this cell. Using data validation You can copy the data validation from one cell to another using the Validation option in the Paste Special dialog box. Selecting Custom from the Allow list on the Settings page in the Data Validation dialog box allows you to enter or refer to a formula. The formula calculates to a true or false result, with true results being valid entries and false results being invalid entries. Page 56 WWP Training Limited

57 Excel 2002 (XP): Level 3 Lesson 5 - Working with Data Validation and Subtotals Procedures 1. Select the cells with the data entry you want to restrict. 2. Select the Data menu. 3. Select the Validation command. 4. Select the Settings tab. 5. Select the Allow list. 6. Select the desired option. 7. Select the Data list. 8. Select the desired option. 9. Select the first box for the restriction you want to set. 10. Type the restriction. 11. Select additional boxes as necessary. 12. Type additional restrictions. 13. Select OK. VALIDATING DATA USING A LIST Discussion You can restrict cell entry to specific values in a list. The list value can be text or numbers. For example, you can specify the four departments that can be entered into a Department field. When you restrict data entry in a cell to a specified list, a drop-down arrow appears when the user selects the cell. The user can either select a valid entry from the list or type a valid entry. Entries that do not appear on the list are considered invalid. Procedures 1. Select the cells with the data entry you want to restrict to a list. 2. Select the Data menu. 3. Select the Validation command. 4. Select the Settings tab. 5. Select the Allow list. WWP Training Limited Page 57

58 Lesson 5 - Working with Data Validation and Subtotals Excel 2002 (XP): Level 3 6. Select List. 7. Click the Collapse Dialog button in the Source box. 8. Drag to select the list range in the worksheet. 9. Click the Expand Dialog button in the Source box. 10. Select OK. CREATING A CUSTOM ERROR MESSAGE Discussion When a user enters an invalid entry into a cell with restricted data entry, Excel opens a message box, informing the user that the entry is invalid. You can create a custom message that appears in the message box instead of the default message. Excel includes three styles of alert message boxes: Stop, Warning, and Information. Each style provides different buttons in the message box and, more importantly, different restrictions. The default error alert style is Stop, which does not allow invalid data to be entered into cells. Both the Warning and Information styles allow invalid data to be entered. You can enable the Apply these changes to all other cells with the same settings option on the Settings page in the Data Validation dialog box. This option applies any changes you have made to all cells that contain the same data validation as the changed cells. You can use the Input Message page in the Data Validation dialog box to create a message that appears in a ScreenTip when the user selects a cell. This message can provide information for the user about the type of data to be entered. Procedures 1. Select the cells with the error message you want to customize. 2. Select the Data menu. 3. Select the Validation command. 4. Select the Error Alert tab. 5. Select the Style list. Page 58 WWP Training Limited

59 Excel 2002 (XP): Level 3 Lesson 5 - Working with Data Validation and Subtotals 6. Select the desired style. 7. Select the Title box. 8. Type the desired title. 9. Select the Error message box. 10. Type the desired error message. 11. Select OK. REMOVING DATA VALIDATION Discussion You can remove all the restrictions on data entry in a cell by clearing the data validation from the cell. Removing data validation allows any entry to be entered in a cell. Selecting the Clear All button on any page in the Data Validation dialog box clears the restrictions on all the pages for the selected range. Procedures 1. Select the cells with the data validation you want to remove. 2. Select the Data menu. 3. Select the Validation command. 4. Select Clear All. 5. Select OK. CREATING SUBTOTALS IN A LIST Discussion You can create subtotals for lists that are grouped. When a database is sorted by the values in a field, records containing identical values are grouped together. Therefore, when you sort a list by department, all records from the same department, such as the sales department, are grouped together and appear consecutively in the list. WWP Training Limited Page 59

60 Lesson 5 - Working with Data Validation and Subtotals Excel 2002 (XP): Level 3 Once a list is grouped, you can calculate the subtotals of fields. For example, summing the salaries by departments would provide the salary subtotals for each department: administrative, development, production, and sales. Besides the SUM function, other functions can be used for subtotal calculations, including COUNT, AVERAGE, MIN, and MAX. Multiple fields can be subtotaled within a group. When a list is subtotaled, Excel inserts a summary row under each group with the group name and resulting subtotals, and a final grand total at the bottom of the list. In addition, outlining is automatically applied to the list. Subtotaled groups appear with outline symbols. Using the symbols, you can display or hide the group details. Creating subtotals in a list You can calculate different functions for the same group. First, create the subtotals for the first function. Then, reopen the Subtotals dialog box, select the second function and the fields you want to calculate, and deselect the Replace current subtotals option. A list must be sorted first by the same field in which you want to report grouped subtotals. Page 60 WWP Training Limited

61 Excel 2002 (XP): Level 3 Lesson 5 - Working with Data Validation and Subtotals Procedures 1. Select a cell in the column containing the field you want to group. 2. Click the Sort Ascending button on the Standard toolbar. 3. Select the Data menu. 4. Select the Subtotals command. 5. Select the At each change in list. 6. Select the same field in which the list is sorted. 7. Select the Use function list. 8. Select the desired function. 9. Select the field you want to calculate in the Add subtotal to list box. 10. Select additional fields as desired. 11. Select OK. REMOVING SUBTOTALS FROM A LIST Discussion You can remove the subtotals from a list when you no longer need the results. Removing the subtotals also removes the outlining and grand total information. Procedures 1. Select a cell in the list containing the subtotals you want to remove. 2. Select the Data menu. 3. Select the Subtotals command. 4. Select Remove All. WWP Training Limited Page 61

62 Lesson 5 - Working with Data Validation and Subtotals Excel 2002 (XP): Level 3 EXERCISE WORKING WITH DATA VALIDATION AND SUBTOTALS Task Work with data validation and subtotals 1. Open Person4 and display the PartTime worksheet, if necessary. 2. Select the Employees worksheet. 3. Sort the records by the Status field and then by the Department field within each status. 4. Create subtotals to sum the salaries by the Status field. 5. Remove the subtotals. 6. Create validation limits on the data in the Birthdate field. Limit the data entry to dates between 1/1/1940 and 1/1/ Create a Warning error alert with the title Date Limit Error and the message Recheck the date. Select Yes to enter the date or No to enter another date!. 8. Enter the date 6/10/95 in cell E6. Select No and change the date entry to 6/10/ Clear all data validation from the Birthdate field. 10. Close the workbook without saving it. Page 62 WWP Training Limited

63 LESSON 6 - USING CONDITIONAL AND CUSTOM FORMATS In this lesson, you will learn how to: Apply conditional formats Change a conditional format Add a conditional format Delete a conditional format Create a custom format

64 Lesson 6 - Using Conditional and Custom Formats Excel 2002 (XP): Level 3 APPLYING CONDITIONAL FORMATS Discussion You can use the Conditional Formatting feature to visually emphasize data that meets certain conditions. For instance, you can have all sales greater than or equal to a certain value appear in a different font color. Excel provides two conditional format types: Cell Value Is and Formula Is. The Cell Value Is option applies the conditional formatting based on the values or contents of the selected cells. The Formula Is option applies the conditional formatting based on the result of a logical formula; the formula must evaluate to true or false. Applying a conditional format You can use the Format Painter button to copy conditional formatting from one range to another. Conditional formatting overrides AutoFormat settings. Procedures 1. Select the range to which you want to apply a conditional format. 2. Select the Format menu. 3. Select the Conditional Formatting command. 4. Under Condition 1, select the first list on the left. 5. Select the desired conditional format type. 6. Select the second list from the left. 7. Select the desired operator. 8. Select the box to the right of the operator. 9. Type one or more values you want to use as criteria, as needed. Page 64 WWP Training Limited

65 Excel 2002 (XP): Level 3 Lesson 6 - Using Conditional and Custom Formats 10. Select Format. 11. Select the formatting you want to apply to values that meet the specified conditions. 12. Select OK. 13. Select OK. CHANGING A CONDITIONAL FORMAT Discussion You can modify an existing conditional format. For example, if your worksheet displays all cells with values less than $4000 in red, you can change the criterion to a different value. Procedures 1. Select the range containing the conditional format you want to modify. 2. Select the Format menu. 3. Select the Conditional Formatting command. 4. Select the list for the option you want to change. 5. Select the desired option. 6. Select the criteria you want to change, if applicable. 7. Enter the value you want to use as the criterion. 8. Select OK. ADDING A CONDITIONAL FORMAT Discussion You can have more than one conditional format for a range of cells. For instance, you can make the font color red for cells with values less than $4000 and blue for cells with values greater than $8000. WWP Training Limited Page 65

66 Lesson 6 - Using Conditional and Custom Formats Excel 2002 (XP): Level 3 Applying a second conditional format Procedures 1. Select the range containing a conditional format to which you want to add a second condition. 2. Select the Format menu. 3. Select the Conditional Formatting command. 4. Select Add. 5. Under Condition 2, select the first list on the left. 6. Select the desired conditional format type. 7. Select the second list from the left. 8. Select the desired operator. 9. Select the box to the right of the operator. 10. Type one or more values you want to use as criteria, as needed. 11. Select Format under Condition Select the formatting you want to apply to values that meet the specified conditions. 13. Select OK. 14. Select OK. DELETING A CONDITIONAL FORMAT Discussion You can delete one or more conditions from a conditionally formatted range. For example, if your worksheet displays cells with values less than $4000 in red and cells Page 66 WWP Training Limited

67 Excel 2002 (XP): Level 3 Lesson 6 - Using Conditional and Custom Formats with values greater than $8000 in blue, you can delete the condition that displays values in blue. Procedures 1. Select the range containing the conditional format you want to delete. 2. Select the Format menu. 3. Select the Conditional Formatting command. 4. Select Delete. 5. Select the condition you want to delete. 6. Select OK. 7. Select OK. CREATING A CUSTOM FORMAT Discussion You can format a number with a format that does not exist in Excel by creating a custom number format. Custom number formats can contain text, hyphens, and symbols. For example, in a sales worksheet, you can create a custom number format that will display the text per lb to the right of any number entered into the cell, and then apply that format to the desired cells. When you create a custom number format, you can base it on an existing format. Custom number formats use the following conventions: 1. A number sign (#) indicates a placeholder and can be used to indicate at what position to place a comma, for example. 2. A zero (0) is used when a number should always be displayed. For example, if there is no number at the specified position, Excel will display a 0, such as The format can contain four sections separated by semi-colons: the first section controls the appearance of positive numbers; the second section controls the appearance of negative numbers; the third section controls the appearance of zero values; and the fourth section controls the appearance of text. If only two sections exist, the first controls positive numbers and zero values and the second controls negative numbers. 4. Each section can be displayed in a different color by specifying the color in brackets at the beginning of the section; e.g., [RED]. WWP Training Limited Page 67

68 Lesson 6 - Using Conditional and Custom Formats Excel 2002 (XP): Level 3 5. Text in number formats must be surrounded by quotes ( ). The following number format [CYAN] #,##0.0 "per lb";[red](#,##0.0)"per lb";"n/a" displays positive numbers in cyan, with a comma thousands separator and one decimal place, followed by the text per lb. Negative numbers are red, enclosed in parentheses, with a comma thousands separator and one decimal place, followed by the text per lb. The text N/A will appear for zero values. You can access a custom number format by selecting Custom from the Category list on the Number page in the Format Cells dialog box; all custom number formats will then appear in the Type list. Creating a custom format Procedures 1. Select the cells to which you want to apply a custom format. 2. Select the Format menu. 3. Select the Cells command. 4. Select the Number tab. 5. Select Custom from the Category list. 6. Select the format in the Type list box that most closely resembles the format you want to create. 7. Place the insertion point at the desired location in the Type box. Page 68 WWP Training Limited

69 Excel 2002 (XP): Level 3 Lesson 6 - Using Conditional and Custom Formats 8. Customize the format as desired. 9. Select OK. WWP Training Limited Page 69

70 Lesson 6 - Using Conditional and Custom Formats Excel 2002 (XP): Level 3 EXERCISE USING CONDITIONAL AND CUSTOM FORMATS Task Use conditional formatting and custom formats in a worksheet. 1. Open Region Apply conditional formatting to the range B5:E9; have cells with values greater than $45,000 display in Red (third row, first column). 3. Change the conditional formatting of B5:E9; have cells with values less than $45,000 display in Red. 4. Add a second conditional format to B5:E9. In addition to displaying cells with values less than $45,000 in Red, have cells with values greater than $50,000 display in Green (second row, fourth column). 5. Remove the conditional format for cells with values less than $45,000 (Condition 1). 6. Select H5 and create a custom number format that displays positive numbers in blue, with the currency format and no decimal places, and negative numbers in red, with parentheses, the currency format, and no decimal places. (Hint: Use the $#,##0_);[Red]($#,##0) custom format and add the color blue to the positive numbers.) 7. Copy the custom format to H6:H9. 8. Close the workbook without saving it. Page 70 WWP Training Limited

71 LESSON 7 - WORKING WITH COMMENTS In this lesson, you will learn how to: Create comments View a comment Use the Reviewing toolbar Print comments Respond to discussion comments

72 Lesson 7 - Working with Comments Excel 2002 (XP): Level 3 CREATING COMMENTS Discussion Comments are notes added to a worksheet. Comments can be used to provide information about data in a cell or about the worksheet itself. For example, you can describe how you arrived at a particular formula in a cell, or you can list the telephone number of a client to whom the data in the worksheet refers. When a comment is attached to a cell, a red indicator appears in the upper, right corner of the cell. Comments are useful if you want to communicate with other users when working in shared workbooks on a network. Since comments include the name of the current user, they can be an effective way to explain data or the reason for a change. For example, if you change a value in a shared workbook, you can add a comment explaining why you changed the value. Adding a comment to a cell You can also create a comment by right-clicking a cell and selecting the Insert Comment command. If a red indicator does not appear in a cell with a comment attached to it, you can select the Tools menu, the Options command, and then the Comment indicator only option on the View page. Comments automatically include the name of the current user. If you do not want to include the name, or if the name is incorrect, you can delete or change it in the User name box on the General page in the Options dialog box. To open the Options dialog box, select the Tools menu and then the Options command. Page 72 WWP Training Limited

73 Excel 2002 (XP): Level 3 Lesson 7 - Working with Comments Procedures 1. Select the cell to which you want to add a comment. 2. Click the New Comment button on the Reviewing toolbar. 3. Type the desired comment text. 4. Click anywhere in the worksheet to exit the comment box. VIEWING A COMMENT Discussion You can view comments using the same technique as you would to view ScreenTips. When you position the mouse pointer over any cell that has a comment attached to it, the comment appears in a comment box next to the cell. To hide the comment, you simply move the mouse pointer away from the cell. Procedures 1. Point to the cell containing the comment you want to view. USING THE REVIEWING TOOLBAR Discussion You can use the Reviewing toolbar to navigate, add, hide, and delete comments. For example, in an order entry workbook that has comments on the status of each order, you can use the toolbar to move from one comment to another, reading the status on each comment. Excel looks for comments beginning with the active cell. Therefore, it is best to make cell A1 the active cell before you click the Next Comment button. This step ensures that all the comments will be viewed. WWP Training Limited Page 73

74 Lesson 7 - Working with Comments Excel 2002 (XP): Level 3 Displaying all comments After you have reviewed the last comment, a Microsoft Excel warning box opens, telling you that you have reached the end of the workbook. You can choose to review the comments again from the beginning or cancel the review process. You use the same button to show or hide comments. When comments are hidden, clicking the Show All Comments button displays them. When comments are displayed, clicking the Hide All Comments button hides them. Procedures 1. Display the Reviewing toolbar. 2 Click the Next Comment button to select the next comment. 3. Click the Previous Comment button to select the previous comment. 4. Click the Show Comment button to permanently display the selected comment. 5. Click the Hide Comment button to hide the selected comment. Page 74 WWP Training Limited

75 Excel 2002 (XP): Level 3 Lesson 7 - Working with Comments 6. Click the Show All Comments button to shown all comments in the worksheet. 7. Click the Hide All Comments button to hide all comments in the worksheet. 8. Click the Delete Comment button to delete the selected comment. 9. Click the Edit Comment button to edit the selected comment. PRINTING COMMENTS Discussion You can print comments on a separate page at the end of the printed worksheet, or you can print them as they appear on the worksheet. Comments that print on a separate page at the end of the printed worksheet display the cell address, the author of the comment, and the text that appears in the comment. Printing on a separate page at the end of a worksheet is useful when, for example, you add comments to a worksheet that describe certain formulas. You can then display and print the comments to help other users. If you are printing comments as they appear on a worksheet, you need to display them before printing. Procedures 1. Select the File menu. 2. Select the Page Setup command. 3. Select the Sheet tab. 4. Select the Comments list. 5. Select At end of sheet or As displayed on sheet, as desired. 6. Select Print. 7. Select OK. WWP Training Limited Page 75

76 Lesson 7 - Working with Comments Excel 2002 (XP): Level 3 RESPONDING TO DISCUSSION COMMENTS Discussion In Excel, you can use comments to share discussions with team members. When a workbook is shared, all reviewers can reply to existing comments by adding their own comments to the applicable comment boxes. Each reviewer s comments will be preceded by his or her user name. Responding to a comment You can share a workbook by selecting the Tools menu and the Share Workbook command. Then, on the Editing page, enable the Allow changes by more than one user at the same time. This also allows workbook merging. option and select OK. Select OK again to confirm saving the workbook. If you send a workbook for review, it is automatically shared and comments are tracked. You can send a workbook for review by selecting the File menu, pointing to the Send To command, and selecting the Mail Recipient (for Review) command. Page 76 WWP Training Limited

77 Excel 2002 (XP): Level 3 Lesson 7 - Working with Comments Procedures 1. Select the cell containing the comment to which you want to reply. 2. Click the Edit Comment button. 3. Type the reply text. 4. Click anywhere in the worksheet to exit the comment box. WWP Training Limited Page 77

78 Lesson 7 - Working with Comments Excel 2002 (XP): Level 3 EXERCISE WORKING WITH COMMENTS Task Work with comments. 1. Open Comm Display the Reviewing toolbar. 3. Insert the comment Acquired 5 new customers in the region in cell E Point to cell A13 to view its comment. 5. Select cell A1 and then use the Reviewing toolbar to view each comment. When you have viewed all the comments, select Cancel in the Microsoft Excel warning box, if necessary. 6. Show the comment in cell G7 so that it remains displayed even when the cell is not active. 7. Show all the comments in the worksheet. 8. Print the worksheet with all comments at the end of the sheet. 9. Hide all the comments. 10. Edit the comment in cell A13 to read Canada and Mexico. 11. Delete the comment in cell G Hide the Reviewing toolbar. 13. Close the workbook without saving it. Page 78 WWP Training Limited

79 LESSON 8 - USING WORKSHEET PROTECTION In this lesson, you will learn how to: Unlock cells in a worksheet Protect a worksheet Unprotect a worksheet Create allow-editing ranges Delete allow-editing ranges Protect workbook windows Unprotect workbook windows Assign a password Open a password-protected file Remove a password Set manual calculation Reset automatic calculation Use the Document Recovery pane

80 Lesson 8 - Using Worksheet Protection Excel 2002 (XP): Level 3 UNLOCKING CELLS IN A WORKSHEET Discussion You can control access to a worksheet by locking or unlocking individual cells in it. If worksheet protection is activated, you cannot change the contents of any locked cell. If you want to allow changes to some cells, however, you can unlock those cells before you activate worksheet protection. As a rule, the cells you want to use for data entry are unlocked, and the cells that have formulas in them are locked so that the formulas cannot be changed. For example, you can lock all cells in a sales worksheet, except for those cells in which sales figures need to be entered. You can also lock cells containing text. Unlocking cells Although cells are locked by default, this option has no effect on a worksheet unless the worksheet is protected. Page 80 WWP Training Limited

81 Excel 2002 (XP): Level 3 Lesson 8 - Using Worksheet Protection Procedures 1. Select the cells you want to unlock. 2. Select the Format menu. 3. Select the Cells command. 4. Select the Protection tab. 5. Deselect the Locked option. 6. Select OK. PROTECTING A WORKSHEET Discussion Once you have unlocked cells, you can prevent changes to the rest of the worksheet by protecting it. Protecting a worksheet prevents unauthorized or accidental changes to formulas. For example, you can unlock only cells E3 and E4, leaving the rest of the cells in the worksheet locked; if you then protect the worksheet, you will be able to enter data in cells E3 and E4, but you will not be able to access any other cells. You can assign an optional password to a protected worksheet. Passwords are casesensitive. A password is any combination of letters, numbers, symbols, and spaces, and can be up to 255 characters long. For example, CLASS is a different password than class. You can select what features and functions of the worksheet you want to protect. For example, you can allow users to select locked or unlocked cells, or format, insert, or delete cells, columns, and rows. WWP Training Limited Page 81

82 Lesson 8 - Using Worksheet Protection Excel 2002 (XP): Level 3 Protecting a worksheet Many commands and toolbar buttons are not available in a protected worksheet. You can protect the worksheet structure from being deleted, hidden, or moved or the worksheet window from being hidden, moved, or resized by assigning a password to the workbook in the Protect Workbook dialog box. To open the Protect Workbook dialog box, select the Tools menu, point to the Protection command, and then select the Protect Workbook command. If you forget the password for a protected worksheet, you cannot unprotect the worksheet. Procedures 1. Select the Tools menu. 2. Point to the Protection command. 3. Select the Protect Sheet command. 4. Type a password, if desired. 5. Select OK. 6. Type the password again, if necessary. Page 82 WWP Training Limited

83 Excel 2002 (XP): Level 3 Lesson 8 - Using Worksheet Protection 7. Select OK. UNPROTECTING A WORKSHEET Discussion You can unprotect a protected worksheet. If you used a password to protect the worksheet, however, you must know the password to unprotect it. After you have unprotected the worksheet, you can make changes to any cell in it. Procedures 1. Select the Tools menu. 2. Point to the Protection command. 3. Select the Unprotect Sheet command. 4. Type the required password, if necessary. 5. Select OK. CREATING ALLOW-EDITING RANGES Discussion If you want only certain users to be able to access specified cells in a worksheet, you can identify those cells as an allow-editing range. You control access to this range by first locking the cells in it and then assigning a password to it. After activating worksheet protection, users are prompted for the assigned password when they select any cell in the allow-editing range. If the correct password is entered, the range is unlocked for editing; the allow-editing range is not locked again, however, until the workbook is closed. WWP Training Limited Page 83

84 Lesson 8 - Using Worksheet Protection Excel 2002 (XP): Level 3 The Allow Users to Edit Ranges dialog box Remember to unlock the cells you want all users to be able to edit before enabling worksheet protection. You can select the allow-editing range before you open the Allow Users to Edit Ranges dialog box; the range will then appear in the New Range dialog box when it opens. Procedures 1. Select the Tools menu. 2. Point to the Protection command. 3. Select the Allow Users to Edit Ranges command. 4. Select New. 5. Click the Collapse Dialog button in the Refers to cells box. 6. Select the range in which you want to allow editing. 7. Click the Expand Dialog button. 8. Select the Range password box. 9. Type the desired password. 10. Select OK. 11. Type the password again. 12. Select OK. 13. Select Protect Sheet. Page 84 WWP Training Limited

85 Excel 2002 (XP): Level 3 Lesson 8 - Using Worksheet Protection 14. Type the desired password. 15. Select OK. 16. Type the password again. 17. Select OK. DELETING ALLOW-EDITING RANGES Discussion When a worksheet no longer needs an allow-editing range, it can be removed from the worksheet. The worksheet must first be unprotected before you can remove the unlocked range. Procedures 1. Select the Tools menu. 2. Point to the Protection command. 3. Select the Unprotect Sheet command. 4. Type the required password. 5 Select OK. 6. Select the Tools menu. 7. Point to the Protection command. 8. Select the Allow Users to Edit Ranges command. 9. Select the range you want to delete from the Ranges unlocked by a password when sheet is protected list box. 10. Select Delete. 11. Select OK. WWP Training Limited Page 85

86 Lesson 8 - Using Worksheet Protection Excel 2002 (XP): Level 3 PROTECTING WORKBOOK WINDOWS Discussion You can protect workbook windows. When you protect a workbook window, the Minimize, Maximize, and Close buttons are removed; as a result, the window cannot be moved or resized. This option is useful if you have arranged the windows and want to prevent them from being rearranged. In addition to protecting a window, you can prevent structural changes to a workbook. For example, if a workbook structure is protected, you cannot insert, delete, or move worksheets contained in it. You can assign an optional password. Passwords are case-sensitive. For example, CLASS is a different password than class. The Protect Workbook dialog box If you forget the password for a protected workbook, you cannot unprotect the workbook. Procedures 1. Select the Tools menu. 2. Point to the Protection command. 3. Select the Protect Workbook command. 4. Type a password, if desired. 5. Under Protect workbook for, select the desired options. 6. Select OK. 7. Type the password again, if necessary. Page 86 WWP Training Limited

87 Excel 2002 (XP): Level 3 Lesson 8 - Using Worksheet Protection 8. Select OK. UNPROTECTING WORKBOOK WINDOWS Discussion When you unprotect a workbook window, the Maximize, Minimize, and Close buttons are restored, and the window can be resized. You can also perform structural changes (such as inserting, deleting, or moving worksheets) in an unprotected workbook. If a password has been used to protect a workbook, you must know the password to unprotect it. If you forget the password, you cannot unprotect the workbook. Procedures 1. Select the Tools menu. 2. Point to the Protection command. 3. Select the Unprotect Workbook command. 4. Type the required password, if necessary. 5. Select OK. ASSIGNING A PASSWORD Discussion Passwords are used to protect a file. You can assign one password to open a file, and a different password to modify a file. If you assign both types of passwords to a file, only those users who know the open password can open the file, and only those users who know both the open and modify passwords can save changes to it. Passwords are case-sensitive and can be any combination of letters, numbers, symbols, and spaces, up to 15 characters long. After a password has been assigned, you will be prompted for the password each time you open the document and/or each time you try to save it, depending on the type of password. WWP Training Limited Page 87

88 Lesson 8 - Using Worksheet Protection Excel 2002 (XP): Level 3 Passwords are often assigned to files that contain sensitive data, such as salaries or bonuses. They can also be used to secure files stored on a network. Assigning a password You can also use the Security page in the Options dialog box to assign a password. If you forget an assigned password, you cannot open and/or save the file. Procedures 1. Select the File menu. 2. Select the Save As command. 3. Select the Tools menu in the Save As dialog box. 4. Select the General Options command. 5. Type the desired password. 6. Select OK. 7. Type the password again. 8. Select OK. 9. Select Save. 10. Select Yes. Page 88 WWP Training Limited

89 Excel 2002 (XP): Level 3 Lesson 8 - Using Worksheet Protection OPENING A PASSWORD-PROTECTED FILE Discussion Once a file is password-protected, you must know the password to open it. Whenever you try to open a password-protected file, the Password dialog box prompts you to enter the assigned password. The Password dialog box If you forget the assigned password, you cannot open the file. Procedures 1. Click the Open button on the Standard toolbar. 2. Select the Look in list. 3. Select the drive where the file is stored. 4. Open the folder where the file is stored. 5. Select the file you want to open. 6. Select Open. 7. Type the required password. 8. Select OK. REMOVING A PASSWORD Discussion If a password is no longer needed, you can remove it from a file. You can then open the file at any time without a password. WWP Training Limited Page 89

90 Lesson 8 - Using Worksheet Protection Excel 2002 (XP): Level 3 When you remove a password, you must save the file to replace the protected version. You can also use the Security page in the Options dialog box to remove a password. Procedures 1. Select the File menu. 2. Select the Save As command. 3. Select the Tools menu in the Save As dialog box. 4. Select the General Options command. 5. Press [Delete]. 6. Select OK. 7. Select Save. 8. Select Yes. SETTING MANUAL CALCULATION Discussion When you change any number in a worksheet, all formulas that refer to that number are automatically recalculated. You can configure the worksheet to recalculate manually instead. Manual recalculation allows you to change numbers as needed and then recalculate the worksheet only when desired. This option can save time when you are working in large, complex worksheets. When recalculation is set to manual, the Calculate indicator appears on the status bar when values have changed and formulas need to be recalculated. If the Calculate indicator appears on the status bar, the worksheet figures may not be accurate. For this reason, it is a good idea to always recalculate before you print the worksheet. Calculation options are system settings rather than workbook settings. Consequently, once you have enabled manual calculation, all worksheets will have to be manually recalculated until you change the calculation back to automatic. Page 90 WWP Training Limited

91 Excel 2002 (XP): Level 3 Lesson 8 - Using Worksheet Protection Setting manual calculation Even if calculation is set to manual, worksheets will automatically recalculate each time you save them, if the Recalculate before save option is selected on the Calculation page in the Options dialog box. You can recalculate all open workbooks by selecting the Calc Now button on the Calculation page in the Options dialog box or pressing the [F9] key. To recalculate only the current worksheet, select the Calc Sheet button on the Calculation page in the Options dialog box. Procedures 1. Select the Tools menu. 2. Select the Options command. 3. Select the Calculation tab. 4. Under Calculation, select the Manual option. 5. Select OK. WWP Training Limited Page 91

92 Lesson 8 - Using Worksheet Protection Excel 2002 (XP): Level 3 RESETTING AUTOMATIC CALCULATION Discussion Calculation options are system settings rather than workbook settings. As a result, if you select manual recalculation for one workbook, you will have to manually recalculate all workbooks until you change the calculation back to automatic. Procedures 1. Select the Tools menu. 2. Select the Options command. 3. Select the Calculation tab. 4. Under Calculation, select the Automatic option. 5. Select OK. USING THE DOCUMENT RECOVERY PANE Discussion Office XP provides a file recovery feature that can recover data lost when an error prevents the normal saving and closing of a file (such as when your computer suddenly crashes or loses power). The next time you start Excel after a system halt, the Document Recovery pane appears on the left side of the application window, with a list of all workbooks that were open when the error occurred. For each workbook, the task pane shows the file name, as well as when you last saved the workbook. If the workbook is marked as recovered, it is probably a more recent version of the original workbook than the last saved version. Right-clicking a workbook in the Document Recovery pane displays a list of available recovery options. The Open option opens the recovered file. The Save As option allows you to save the recovered file with a new name; if you save the file with the same name, the original file is overwritten. If the workbook is marked as recovered, you can select the Delete option to delete the recovered file or the Show Repairs option to view the repairs that were made to the file. You can also open a file by clicking it in the Document Recovery pane. Page 92 WWP Training Limited

93 Excel 2002 (XP): Level 3 Lesson 8 - Using Worksheet Protection Procedures 1. Restart your computer, if necessary. 2. Open Excel. 3. Right-click the workbook you want to recover in the Document Recovery pane. 4. Select the desired recovery option. WWP Training Limited Page 93

94 Lesson 8 - Using Worksheet Protection Excel 2002 (XP): Level 3 EXERCISE USING WORKSHEET PROTECTION Task Use worksheet protection. 1. Open Protect. 2. Unlock the range D6:D Protect the worksheet, assigning a password of protect. 4. Change cell D11 to 3. Change cell E11 to 2. Then, close the Microsoft Excel message box. 5. Unprotect the worksheet. Then, change the type of time in cell E11 to Select the range F6:F12 and make it an allow-editing range. Assign the password special to the allow-editing range and the password class to the worksheet. 7. Change the rate in F12 from 5.50 to Then, delete the unlocked range. (Hint: First unprotect the worksheet.) 8. Protect both the workbook structure and windows; assign a password of workbook. Notice that the window buttons for the workbook are no longer available. 9. Unprotect the workbook. 10. Assign a password to open the workbook; type save as the password. Then, close the workbook. 11. Reopen Protect. Notice that you must enter the assigned password. 12. Set the calculation to manual. 13. Select cell D6 and type 7. Then, recalculate the worksheet manually. Notice that cell G6 is updated. 14. Reset the calculation to automatic. 15. Remove the password from the workbook. 16. Close the workbook without saving it. Page 94 WWP Training Limited

95 LESSON 9 - CREATING/REVISING PIVOTTABLES In this lesson, you will learn how to: Create a PivotTable report Add PivotTable report fields Select a page field item Refresh a PivotTable report Change the summary function Add new fields to a PivotTable report Move PivotTable report fields Hide/Unhide PivotTable report items Delete PivotTable report fields Create a page field report Format a PivotTable report Create a PivotChart report Publish PivotTable reports to the Web Add fields to a PivotTable - browser Use a PivotTable list

96 Lesson 9 Creating and Revising PivotTables Excel 2002 (XP): Level 3 CREATING A PIVOTTABLE REPORT Discussion A PivotTable report can summarize large amounts of data quickly. PivotTable reports allow you to manipulate row and column headings around the central data so that you can view the data in different ways. PivotTable reports are organized into fields and items. Fields are the rows or columns of data; items are the specific entries within a field. For example, if you want to summarize data by month, each month becomes an item in the Month field. Data fields contain the numbers you want to summarize or analyze, such as sales or volume. You can filter PivotTable report items using a page field. A page field displays only the data for the selected page field item. For example, if you have a Quarter page field, you can view the summarized data for all quarters or only for a single quarter. Excel has a PivotTable and PivotChart Wizard to step you through the process of creating a PivotTable report. First, you select the source of the original data, such as a list or database in an Excel worksheet or in an external database. Next, you select the range of data you want to use. The final step of the PivotTable and PivotChart Wizard is to select the worksheet location for the PivotTable report. The field layout of the PivotTable report is where you specify the row, column, and page fields, as well as the data you want to summarize. This step can be performed in a window in the PivotTable and PivotChart Wizard or directly in the worksheet. If the source data is an Excel workbook, it is easier to lay out the PivotTable report directly in the worksheet. If the source data is an external database or an extremely large database, it may be easier to use the Layout window in the PivotTable and PivotChart Wizard. A blank PivotTable report Page 96 WWP Training Limited

97 Excel 2002 (XP): Level 3 Lesson 9 Creating and Revising PivotTables You can also use a PivotTable report to analyze data created in an external data source, such as Access. Worksheet data can also be imported into Access. Procedures 1. Open a worksheet containing a database. 2. Select any cell in the database. 3. Select the Data menu. 4. Select the PivotTable and PivotChart Report command. 5. Select the data source you want to analyze. 6. Select the kind of report you want to create. 7. Select Next >. 8. If necessary, select the database range and then select Next >. 9. Select where you want the PivotTable report to appear. 10. Select Finish. ADDING PIVOTTABLE REPORT FIELDS Discussion The fields in a PivotTable report can be laid out directly in the worksheet. The four areas of the PivotTable are row fields, column fields, page fields, and data items. Each area of the PivotTable displays placeholder text (such as Drop Column Fields Here). When a PivotTable report is active, the available database fields appear in the PivotTable Field List window. If necessary, you can open the PivotTable Field List window by clicking the Show/Hide Field List button on the PivotTable toolbar. You lay out the PivotTable report by dragging fields directly into the desired area of the PivotTable report. For example, if you want to arrange the data by displaying the months at the beginning of each row, you can drag the Month field to the Drop Row Fields Here area. Likewise, to display the product names at the top of each column, you can drag the Product field to the Drop Column Fields Here area. The Drop Data Items Here area contains items to be calculated. Consequently, fields dragged to this area are usually, but not limited to, numerical fields. For example, for a Month by Product report, you can drag the Sales field to the Drop Data Items Here area; your PivotTable report will then display the total sales per product by month. WWP Training Limited Page 97

98 Lesson 9 Creating and Revising PivotTables Excel 2002 (XP): Level 3 Page fields are often used to filter information in large databases. They can break a large report down into smaller, more manageable reports. If the database includes a Region field, this field can be used to summarize the sales in a specific region. Each area of a PivotTable report has its own identifying symbol that appears when you add a new field to the report. As the field is dragged across the different areas of the PivotTable report, its identifying symbol changes accordingly. A completed PivotTable report The PivotTable report area must be selected for the PivotTable Field List window to open. You can dock the PivotTable Field List window to the left or right side of the Excel window. Procedures 1. Display the PivotTable toolbar. 2. Select any cell in the PivotTable report to activate the report and open the PivotTable Field List window. 3. Drag the desired field from the PivotTable Field List window to the Drop Row Fields Here area. 4. Drag the desired field from the PivotTable Field List window to the Drop Column Fields Here area. 5. Drag the desired field from the PivotTable Field List window to the Drop Page Fields Here area. Page 98 WWP Training Limited

99 Excel 2002 (XP): Level 3 Lesson 9 Creating and Revising PivotTables 6. Drag the desired field from the PivotTable Field List window to the Drop Data Items Here area. SELECTING A PAGE FIELD ITEM Discussion Page fields allow you to filter the PivotTable report by displaying only the data for a specific field item; you can drag any field to the page field area. The page field list then displays all the items in the page field. When you select an item from the page field list, only the data relating to that single item appears in the PivotTable report. For example, if items in the Region page field include Northeast, Northwest, Southeast, etc., and you select the Northeast item, only the data for the Northeast region appears in the PivotTable report. Using a page field item to filter data Procedures 1. Click the page field list. 2. Select the desired item. 3. Select OK. WWP Training Limited Page 99

100 Lesson 9 Creating and Revising PivotTables Excel 2002 (XP): Level 3 REFRESHING A PIVOTTABLE REPORT Discussion If the source data changes, a PivotTable report does not automatically update. If you change the existing data, delete records or fields, or add records or fields to the original database range, you need to refresh the PivotTable report. If you add records below the last row or add fields to the right of the last column in a database, you will have to open the PivotTable and PivotChart Wizard to expand the data source range to include the new rows and/or columns. You can open the PivotTable and PivotChart Wizard by clicking in an existing PivotTable report, and selecting the PivotTable menu on the PivotTable toolbar and the Wizard command. Procedures 1. Select any cell in a PivotTable report to activate it. 2. Click the Refresh Data button on the PivotTable toolbar. CHANGING THE SUMMARY FUNCTION Discussion By default, an Excel PivotTable report sums fields that contain numeric data and counts fields that contain text. The PivotTable report can provide summary information using other mathematical calculations as well. A PivotTable report can average data, provide the minimum and maximum values, or yield the standard deviation or variance. A PivotTable report can also contain multiple summaries for the same field. Page 100 WWP Training Limited

101 Excel 2002 (XP): Level 3 Lesson 9 Creating and Revising PivotTables The PivotTable Field dialog box When a PivotTable report contains multiple data fields, you can change the summary function for a field by selecting any cell in the row of the data field you want to change. Procedures 1. Display the PivotTable toolbar. 2. Select any cell in the PivotTable report data area. 3. Click the Field Settings button on the PivotTable toolbar. 4. Select the desired summary function from the Summarize by list box. 5. Select OK. ADDING NEW FIELDS TO A PIVOTTABLE REPORT Discussion PivotTable reports can display multiple fields in the row, column, page, or data areas. Multiple fields can add more detail to your PivotTable report. If a PivotTable report contains the Month row field and the Product column field, you can add a Purchaser row field to be able to display monthly sales by customer as well. New fields can be added to a PivotTable report by dragging them from the PivotTable Field List window to the desired PivotTable report area. The new field can be positioned before or after any existing fields. The position of the field determines how the data will be summarized. You can display the purchasers for each month by placing WWP Training Limited Page 101

102 Lesson 9 Creating and Revising PivotTables Excel 2002 (XP): Level 3 the Month field before the Purchaser field, or you can reverse the field order to display the purchaser first, followed by the month. As you drag new fields into a PivotTable report, guidelines indicate the position of the field in relation to existing fields. When positioning a field in the row area, the guideline is a thick, gray vertical bar, which appears to the left or right of an existing row field. When positioning a field in the column area, the guideline is a horizontal bar, which appears above or below existing field items. When the guideline appears to the left of a field in the row area, or above the field items in the column area, the new field will be placed before the existing field. Adding a field to a PivotTable report You can drag a field to a different position in the PivotTable report at any time; this feature is helpful if you accidentally position a field in the wrong area. Procedures 1. Select any cell in the PivotTable report to activate it and open the PivotTable Field List window. 2. Drag the field you want to add to the PivotTable report from the PivotTable Field List window to the desired PivotTable report area and position. Page 102 WWP Training Limited

103 Excel 2002 (XP): Level 3 Lesson 9 Creating and Revising PivotTables MOVING PIVOTTABLE REPORT FIELDS Discussion You can change the layout of the PivotTable report by moving fields from one area to another. By moving the fields, you can experiment with the best way to display your data. As you move fields in the PivotTable report, thick, gray bars indicate the placement of the field. Vertical bars represent row area placement and horizontal bars represent column and page area placement. You can also move a field from one area to another by dragging the desired field from the PivotTable Field List window to the desired area; the field is removed from its previous area and appears only in the destination area. Procedures 1. Drag any field to move it from one area of the PivotTable report to another. HIDING/UNHIDING PIVOTTABLE REPORT ITEMS Discussion You do not have to display all the field items in a PivotTable report. You can hide selected items, such as some of the products in a Product field. You can hide everything except the data you need to view. You can also unhide items at any time. To unhide items, you follow the same procedure as you do when hiding items; you simply select the items you want to view in the field item list or select (Show All) to view all the field items. Procedures 1. Select the field item list containing the items you want to hide. 2. Deselect the items you want to hide. WWP Training Limited Page 103

104 Lesson 9 Creating and Revising PivotTables Excel 2002 (XP): Level 3 3. Select OK. DELETING PIVOTTABLE REPORT FIELDS Discussion If you no longer want to view a field in your PivotTable report, you can remove it from the report. A field can be removed by dragging it away from the PivotTable report into the worksheet. Procedures 1. Drag the field you want to remove away from the PivotTable report. CREATING A PAGE FIELD REPORT Discussion You can use the Show Pages command on the PivotTable menu to create a separate PivotTable report for each item in a page field. The Show Pages feature creates a copy of the PivotTable report in a new worksheet for each page field item. For example, if you have a Region page field, and you select the Show Pages feature, a separate worksheet is created for each region in the Region page field list. Page field reports are inserted before the original PivotTable report worksheet. You cannot undo the Show Pages feature. To remove a page field report, you must delete the worksheet on which it appears. You can double-click any data field item to display its details on a separate worksheet. Page 104 WWP Training Limited

105 Excel 2002 (XP): Level 3 Lesson 9 Creating and Revising PivotTables Procedures 1. Display the PivotTable toolbar. 2. Select any cell in the PivotTable report to activate it. 3. Select the PivotTable menu on the PivotTable toolbar. 4. Select the Show Pages command. 5. Select the page field for which you want to create page field reports. 6. Select OK. FORMATTING A PIVOTTABLE REPORT Discussion You can use the AutoFormat feature to give a PivotTable report a more professional look. AutoFormat provides many formats, which include cell shading, font style and color, and borders. There are two main format styles for PivotTables: reports and tables. A table style retains the original row/column (cross-tabulated) arrangement. A report style rearranges the data into an indented layout, arranging the fields in a hierarchical column arrangement. A report AutoFormat makes it easier to read complex PivotTable reports. If you are not satisfied with AutoFormat, you can undo it. AutoFormat does not format page fields. You can manually change the format of text and numbers using normal Excel formatting commands. WWP Training Limited Page 105

106 Lesson 9 Creating and Revising PivotTables Excel 2002 (XP): Level 3 Formatting a PivotTable report If you create page field reports from a formatted PivotTable report, each page field report will be formatted the same as the PivotTable report. You can rename fields in a PivotTable report by doubleclicking the label you want to rename and typing the desired name into the PivotTable Field dialog box. Selecting None from the AutoFormat list removes all formatting from a PivotTable report. Procedures 1. Display the PivotTable toolbar. 2. Select any cell in the PivotTable report to activate it. 3. Click the Format Report button on the PivotTable toolbar. 4. Select the desired format. 5. Select OK. Page 106 WWP Training Limited

107 Excel 2002 (XP): Level 3 Lesson 9 Creating and Revising PivotTables CREATING A PIVOTCHART REPORT Discussion A PivotChart report allows you to manipulate large amounts of data in a graphical environment. PivotChart reports can be created from a database or an Excel list, or from an existing PivotTable report. Both methods yield the same result, a chart with a layout you can change to view different levels of detail and data. When you create a PivotChart report, Excel automatically creates an accompanying PivotTable report on a separate worksheet. Creating a PivotChart report is similar to creating a PivotTable report. The chart layout is created by dragging fields from the PivotTable Field List window to the desired area of the PivotChart report. The chart layout, however, is slightly different than the report layout. A PivotChart report You can use the Chart Wizard button on the PivotTable toolbar to create a PivotChart report from an existing PivotTable. You may need to move the PivotTable Field List window, the PivotTable toolbar, and the Chart toolbar to view the various areas of a PivotChart report. WWP Training Limited Page 107

108 Lesson 9 Creating and Revising PivotTables Excel 2002 (XP): Level 3 Procedures 1. Open a worksheet containing a database. 2. Select any cell in the database. 3. Select the Data menu. 4. Select the PivotTable and PivotChart Report command. 5. Select the data source you want to analyze. 6. Select the kind of report you want to create. 7. Select Next >. 8. If necessary, select the database range and then select Next >. 9. Select Yes or No to base your PivotChart report on an existing PivotTable report, if applicable. 10. Select the PivotTable report on which you want to base your PivotChart report, if applicable. 11. Select Next >. 12. Select where you want to place the PivotTable report. 13. Select Finish. 14. Drag the desired fields from the PivotTable Field List window to the Drop Category Fields Here area of the PivotChart report. 15 Drag the desired fields from the PivotTable Field List window to the Drop Data Items Here area. 16. Drag the desired fields from the PivotTable Field List window to the Drop Series Fields Here area. 17. Drag the desired fields from the PivotTable Field List window to the Drop Page Fields Here area. PUBLISHING PIVOTTABLE REPORTS TO THE WEB Discussion Excel 2002 allows you to publish PivotTable reports as web pages. If you want others to be able to make changes, you can add interactivity to the published file. With interactivity, anyone can change the layout of the PivotTable report while viewing it in a web browser. When a PivotTable report is published with interactivity, it is known as a PivotTable list. Not all web browser viewers are able to use a PivotTable list. The user must be using Internet Explorer 4.01 or greater as a web browser and must also have Microsoft Page 108 WWP Training Limited

109 Excel 2002 (XP): Level 3 Lesson 9 Creating and Revising PivotTables Office Web Components installed. Users of a different browser can view the PivotTable report, but cannot use its interactive features. Publishing a PivotTable report to the Web Although you can include symbols such as number signs (#) or periods (.) in field names in a PivotTable report, you should not do so if you intend to publish the report as an interactive PivotTable list. Field names in a PivotTable list, however, can include spaces. You can also publish interactive PivotChart reports to the Web. If you include interactivity, the PivotChart and PivotTable reports are published on the same web page. Procedures 1. Open a workbook containing a PivotTable report you want to publish to the Web. 2. Select the worksheet containing the PivotTable report you want to publish. 3. Select the File menu. 4. Select the Save as Web Page command. 5. Type the desired file name in the File name box. 6. Select the Save in list. 7. Select the drive where you want to save the HTML file. WWP Training Limited Page 109

110 Lesson 9 Creating and Revising PivotTables Excel 2002 (XP): Level 3 8. Open the folder where you want to save the HTML file. 9. Select Publish. 10. Under Item to publish, select PivotTable. 11. Under Viewing options, select the Add interactivity with option. 12. Select the Open published web page in browser option. 13. Select Publish. ADDING FIELDS TO A PIVOTTABLE - BROWSER Discussion PivotTable lists are interactive PivotTable reports that can be manipulated in a web browser. Users can change the layout and fields of a PivotTable list in their web browser. In order to use PivotTable lists, the web browser must be Internet Explorer version 4.01 or greater, and the Microsoft Office Web Components must be installed. A PivotTable list can be changed using the toolbar buttons that appear at the top of the list. You can add fields to the row, column, filter, data, or detail areas using the Field List button on the toolbar above the PivotTable list. The row, column, and data areas are identical to those in a PivotTable report. The page area in a PivotTable report in a worksheet, however, is known as the filter area in a PivotTable list. The detail area is a collapsed field in the data area. You can drag fields to rearrange or remove them from the PivotTable list. An interactive PivotTable list Page 110 WWP Training Limited

111 Excel 2002 (XP): Level 3 Lesson 9 Creating and Revising PivotTables Users viewing the PivotTable list in a different browser will be able to view the PivotTable list, but not use its interactive features. You will not be able to view the details for a PivotTable list if it is based upon an OLAP (On-Line Analytical Processing) database; only summarized data is available for OLAP databases. OLAP databases are used to create queries and reports for large databases. Non-OLAP data, such as Access databases and Excel lists, display all available data. Procedures 1. Open an HTML file containing an interactive PivotTable list in Internet Explorer 4.01 or greater. 2. Click the Field List button on the toolbar above the PivotTable list. 3. Select the field you want to add from the PivotTable Field List window. 4. Select the list to the right of Add to. 5. Select the area to which you want to add the field. 6. Select Add to. USING A PIVOTTABLE LIST Discussion PivotTable lists can be changed using objects available in the Internet Explorer window. Although PivotTable reports in worksheets display only the fields you select, PivotTable lists in a web browser contain all the underlying details from the source data. You can show or hide individual field or item details as desired by clicking the plus and minus buttons adjacent to each field and item. Drop-down lists for row, column, and page fields can be used to customize the PivotTable list by showing or hiding the data for specific items within a field. The toolbar above the PivotTable list provides buttons for copying and sorting fields, enabling and disabling filters, calculating fields, and displaying and refreshing data. The Show Top/Bottom Items button allows you to filter a field to display a specific number or a specified percent of top or bottom items. For example, you can display the WWP Training Limited Page 111

112 Lesson 9 Creating and Revising PivotTables Excel 2002 (XP): Level 3 five top salespeople in the Salesman field. Once a filter has been applied, you can use the AutoFilter button to enable or disable the filter. You can change the type of calculated data displayed in the filter area. You can use the AutoCalc button to add calculated fields and the Calculated Totals and Fields button to create custom calculations. In addition, the Show As button can be used to change the data display in the filter area to percents. The Export to Excel button exports the PivotTable list to an Excel worksheet. The Command and Options button is used to format fields as well as show and hide elements of the PivotTable list. The Commands and Options dialog box is contextsensitive; the pages and options available depend upon what is selected in the PivotTable list. The Show Details and Hide Details buttons on the toolbar above the PivotTable list perform the same functions as selecting the plus or minus buttons adjacent to each field. If an item is selected, only that item will collapse or expand; if no items are selected, all items in the PivotTable list will collapse or expand. When you point to a data item, details about that item appear in a ScreenTip. You can hide the interactive PivotTable list toolbar by rightclicking the toolbar and deselecting the Toolbar command or by deselecting the Toolbar option on the Behavior page in the Command and Options dialog box. Procedures 1. Open a PivotTable list in Explorer 4.01 or greater. 2. Click the field name of the row or column with the subtotal you want to hide or display. 3. Click the Subtotal button on the toolbar above the PivotTable list. 4. Click the field name of a row or column you want to expand. 5. Click the Expand button on the toolbar above the PivotTable list. 6. Click the plus button adjacent to any item you want to expand. 7. Click the minus button adjacent to any item you want to collapse. Page 112 WWP Training Limited

113 Excel 2002 (XP): Level 3 Lesson 9 Creating and Revising PivotTables 8. Select the arrow to the right of the field you want to customize. 9. Select or deselect the field items you want to hide or display, respectively. 10. Select OK. WWP Training Limited Page 113

114 Lesson 9 Creating and Revising PivotTables Excel 2002 (XP): Level 3 EXERCISE CREATING/REVISING PIVOTTABLES Task Create and revise PivotTable reports. 1. Open Expivot1 and display the Sheet1 worksheet, if necessary. 2. Create a PivotTable report from the data range A4:G67. Place the PivotTable report in a new worksheet. 3. Create the following layout: Field Date Sold Product Inv Num Sales Rep Total Income Area Page Row Row Column Data 4. Use the Date Sold list to display only the sales for 2/6/ Display the World worksheet and change the number in cell F9 to Display the Sheet1 worksheet and refresh the PivotTable report. 7. Change the Date Sold list to display all dates. 8. Move the Inv Num field to the page area. 9. Delete the Date Sold field from the page area. 10. Display the number of orders for each sales representative by changing the summary function for the data area to Count. (Hint: Display the field settings for the data area.) Then, return the summary function to Sum. 11. Add the Qty Sold field to the right of the Product field in the Row area. 12. Hide Ernest Feldgus and Janice Faraco in the Sales Rep field. 13. Create a separate PivotTable report for each Inv Num item in the page area. (Hint: Use the Show Pages feature on the PivotTable menu.) 14. Select the 3325 sheet and apply the Report 2 AutoFormat to it. Page 114 WWP Training Limited

115 Excel 2002 (XP): Level 3 Lesson 9 Creating and Revising PivotTables 15. Publish the 3325 worksheet to the student data folder as an interactive PivotTable named wsgpivot and have the published web page open in your browser. 16. Maximize your browser window, if necessary. 17. In your browser, add the Date Sold by Month field to the column area. Then, expand the Sales Rep field. 18. Expand the 2001 field, and then the Qtr1 field until the PivotTable list displays each month in the first quarter of Close your browser window. 19. Create a PivotChart report from the World worksheet; base the PivotChart report on the same data as the PivotChart report on Sheet1 and place the PivotChart report in a new worksheet. 20. Create the following layout: Field Product Total Income Sales Rep Date Sold Area Category Data Series Page 21. Display only those products sold by John Carpenter. Then, display all sales representatives again. 22. Close the workbook without saving it. WWP Training Limited Page 115

116

117 LESSON 10 - WORKING WITH ADVANCED FILTERS In this lesson, you will learn how to: Create a criteria range Use a criteria range Show all records Use comparison criteria Use an advanced And condition Use an advanced Or condition Copy filtered records Use database functions

118 Lesson 10 Working with Advanced Filters Excel 2002 (XP): Level 3 CREATING A CRITERIA RANGE Discussion You can use advanced filters to create more complicated conditions to filter a data list. To use advanced filters, you must specify the list range and the criteria range. The list range is the cells containing the data arranged in a series of rows and columns, where the column headings are the field names for the list. The criteria range is a separate range of cells in the worksheet, apart from the data list. The criteria range can be located anywhere in the worksheet outside of the list range, or in another worksheet. The criteria range consists of one row of criteria labels and at least one row of search conditions. The criteria range must contain at least two rows and one column. Although the criteria labels are not case-sensitive, they must be spelled exactly the same as the field names in the data list. The most accurate method of ensuring this consistency is to copy the field names in the data list and paste them into the top row of the criteria range. You can change criteria as often as desired. You can also create more than one criteria range in a worksheet; however, only one criteria range can be used at a time. Creating a criteria range There must be at least one blank row between the criteria range and the list range. Page 118 WWP Training Limited

119 Excel 2002 (XP): Level 3 Lesson 10 Working with Advanced Filters Procedures 1. Select the column labels. 2. Click the Copy button on the Standard toolbar. 3. Position the active cell where you want to create the criteria range. 4. Click the Paste button on the Standard toolbar. USING A CRITERIA RANGE Discussion To find records that match a specific number, date, or text, you can enter matching criteria in the row below the criteria labels. For example, to create a list of all employees in the sales department, you can type Sales in the Department cell in the criteria range. Text in the criteria range is not casesensitive. If you type sales, Excel will search the field in the list range named sales, Sales, or SALES. You define the list and criteria ranges in the Advanced Filter dialog box. The list range contains the fields and records and the criteria range contains the criteria labels and the conditions for which you want to search. If the active cell is positioned in the data list before you open the Advanced Filter dialog box, Excel automatically defines the list range. Otherwise, you can manually enter the list range by typing the range address or by selecting the range in the worksheet. WWP Training Limited Page 119

120 Lesson 10 Working with Advanced Filters Excel 2002 (XP): Level 3 Using a criteria range You can use comparison criteria to enter criteria. Comparison criteria include wildcards for text and operators for numbers. Procedures 1. Copy the column labels to the range where you want to create the criteria. 2. Select the cell below the criteria label of the field you want to search. 3. Type the desired criteria. 4. Press [Enter]. 5. Select any cell in the data list. 6. Select the Data menu. 7. Point to the Filter command. 8. Select the Advanced Filter command. 9. Click the Collapse Dialog button in the Criteria range box. 10. Select the criteria range. 11. Click the Expand Dialog button in the Criteria range box. 12. Select OK. Page 120 WWP Training Limited

121 Excel 2002 (XP): Level 3 Lesson 10 Working with Advanced Filters SHOWING ALL RECORDS Discussion At any time when a data list is filtered, the Show All command from the Filter submenu on the Data menu is available. This command allows you to display all the records in the data list. It does not, however, delete the criteria in the criteria range. Procedures 1. Select the Data menu. 2. Point to the Filter command. 3. Select the Show All command. USING COMPARISON CRITERIA Discussion You can also use comparison criteria in a criteria range when you want to find text or numeric values. When specifying criteria to find text values, you can enter the first few characters of text to search for all records beginning with those characters. Entering ba in a field of last names finds records with last names of Baker, Backman, and Ball. You can also use special characters called wildcards when creating criteria. Wildcards represent one or more characters in a search. You can use one of two wildcard characters in search criteria. A question mark (?) represents a single character, whereas an asterisk (*) can represent an unspecified number of characters. Typing?erry in a field of first names will find records with first names beginning with any single character followed by erry, such as Terry or Perry. Typing T*man in a field of last names will find any records with last names starting with T and ending in man, such as Thurman, Truman, Tierman. Wildcard characters only work for finding text values. You can use operators as comparison criteria for finding numeric values. You can use any of the following comparison operators: Operator Definition = equal to < less than <= less than or equal to WWP Training Limited Page 121

122 Lesson 10 Working with Advanced Filters Excel 2002 (XP): Level 3 > greater than >= greater than or equal to <> not equal to For example, to search for all employees with salaries that are less than or equal to $25,000, you type <=25000 in the cell below the Salary criteria label. USING AN ADVANCED AND CONDITION Discussion You can create And conditions in a criteria range. In an And condition, a record must meet all the criteria to be selected. For example, you can find the records of all employees who work in the sales department and whose salaries are less than $25,000. This example is a typical And condition, where both conditions must be met for a record to be selected. All the criteria for And conditions must be located in the same row in the criteria range. Using an advanced And condition Procedures 1. Copy the column labels to the range where you want to create the criteria. 2. Select the cell below the criteria label of the field you want to search. Page 122 WWP Training Limited

123 Excel 2002 (XP): Level 3 Lesson 10 Working with Advanced Filters 3. Type the desired criteria. 4. Press [Enter]. 5. Select a cell below the criteria label of the second field you want to search. 6. Type the desired criteria. 7. Press [Enter]. 8. Select any cell in the database list. 9. Select the Data menu. 10. Point to the Filter command. 11. Select the Advanced Filter command. 12. Click the Collapse Dialog button in the Criteria range box. 13. Select the criteria range. 14. Click the Expand Dialog button in the Criteria range box. 15. Select OK. USING AN ADVANCED OR CONDITION Discussion You can create Or conditions in a criteria range. In an Or condition, a record must meet either one of two or more criteria in order to be included. For example, you can view the records of all employees who work in the administration department or whose salaries are less that $22,000. This example is a typical Or condition, in which a record meeting either condition is selected. The criteria for Or conditions must be located in different rows in the criteria range. Each Or condition occupies its own row. WWP Training Limited Page 123

124 Lesson 10 Working with Advanced Filters Excel 2002 (XP): Level 3 Using an advanced Or condition It is important to note that when selecting the criteria range for an Or condition, you must expand the criteria range to include all rows containing criteria. Procedures 1. Copy the column labels to the range where you want to create the criteria. 2. Select the cell below the criteria label of the first field you want to search. 3. Type the desired criteria. 4. Press [Enter]. 5. Select the cell below the criteria label of the second field you want to search. 6. Type the desired criteria. 7. Press [Enter]. 8. Select any cell in the database list. 9. Select the Data menu. 10. Point to the Filter command. 11. Select the Advanced Filter command. Page 124 WWP Training Limited

125 Excel 2002 (XP): Level 3 Lesson 10 Working with Advanced Filters 12. Click the Collapse Dialog button in the Criteria range box. 13. Select the criteria range. 14. Click the Expand Dialog button in the Criteria range box. 15. Select OK. COPYING FILTERED RECORDS Discussion You can filter records in a data list and copy the results to another area of the worksheet. In this instance, the original data list remains intact. Copying filtered records allows you to create different lists of similar records in various areas of the worksheet or on other worksheets. For example, if a master employee data list contains all employees in all departments, you can create similar data lists of the employees in each department. Procedures 1. Copy the column labels to the range where you want to create the criteria. 2. Select the cell below the criteria label of the field you want to search. 3. Type the desired criteria. 4. Press [Enter]. 5. Select any cell in the database list. 6. Select the Data menu. 7. Point to the Filter command. 8. Select the Advanced Filter command. 9. Click the Collapse Dialog button in the Criteria range box. 10. Select the criteria range. 11. Click the Expand Dialog button in the Criteria range box. 12. Under Action, select the Copy to another location option. 13. Click the Collapse Dialog button in the Copy to box. 14. Select the cell in the upper left corner of the paste range. WWP Training Limited Page 125

126 Lesson 10 Working with Advanced Filters Excel 2002 (XP): Level Click the Expand Dialog button in the Copy to box. 16. Select OK. USING DATABASE FUNCTIONS Discussion Database functions, or Dfunctions, are used to provide calculations based on criteria. For example, from an employee database of all departments, you may want to calculate the salaries of employees just in the sales department. Although you can physically filter the data to display the records from the sales department and total the found records, you can also use a database function to find the answer without filtering the data. A database function includes three arguments: database, field, and criteria. The database argument is usually the data list. The field argument is the column you want to use in the computation. The criteria argument refers to the cells that define the conditions for the function. For example, in the Dfunction =DSUM(A9:F37,F9,D1:D2), A9:F37 is the database argument (and includes the column labels), F9 is the field argument (the column label of the field you want to calculate), and D1:D2 is the criteria argument. Naming cells makes it easier to enter, copy, or edit database functions. If you name each range, the Dfunction could be entered as: =DSUM(Empdata, Salary,Criteria1). Using a database function Page 126 WWP Training Limited

127 Excel 2002 (XP): Level 3 Lesson 10 Working with Advanced Filters The field argument (the column to be calculated) can be entered as the cell address of the field label, the column number of the field in the database, or the text of the field label enclosed in double quotation marks. Therefore, F9, 6, or Salary could all be used to identify the same field. If you change or delete the criteria referenced in the Dfunction, the function automatically recalculates. To create database functions for several values in a field, you must create a separate criteria range for each value. Therefore, to display the salaries of two different departments, you will need to create two separate Department criteria ranges. Procedures 1. Copy the column labels to the range where you want to create the criteria. 2. Type the criteria in the cell below the criteria label of the field you want to search. 3. Select the cell where you want the result of the formula to appear. 4. Click the Insert Function button on the formula bar. 5. Select the Or select a category list. 6. Select Database. 7. Select the name of the database function you want to use in the Select a function list box. 8. Select OK. 9. Enter the address or name of the database in the Database box. 10. Select the Field box. 11. Enter the address or name of the column label of the field you want to use in the formula. 12. Select the Criteria box. 13. Enter the address or name of the criteria range. 14. Select OK. WWP Training Limited Page 127

128 Lesson 10 Working with Advanced Filters Excel 2002 (XP): Level 3 EXERCISE WORKING WITH ADVANCED FILTERS Task Work with advanced filters. 1. Open Person7. 2. Create a criteria range by copying the column labels to the first row in the worksheet. 3. Find all employees with a status of Show all records. 5. Find all employees with a birthdate after 1/1/70. (Hint: Try typing >1/1/70 into cell E2.) 6. Find all employees with a status of 2 and a salary greater than $30, Find all employees with a status of 3 or 7. (Hint: Remember to change the criteria range.) 8. Show all records. 9. Use the Advanced Filter dialog box to copy all employees with salaries greater than $30,000 to the range beginning in cell J4. (Hint: Remember to change the criteria range.) Page 128 WWP Training Limited

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 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 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

Advanced formula construction

Advanced formula construction L E S S O N 2 Advanced formula construction Lesson objectives Suggested teaching time 40-50 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

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

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

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

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

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

Microsoft Excel Intermediate

Microsoft Excel Intermediate Microsoft Excel 2010 Intermediate UNIT ONE... 4 USING THE IF FUNCTION...5 EXERCISE 1.1...6 EXERCISE 1.2...6 EXERCISE 1.3...7 ADDING OTHER FUNCTIONS...7 EXERCISE 1.4...7 NESTED IF `S...8 EXERCISE 1.5...8

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

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

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

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

This Training Manual is made available to better follow along the instructor during the Global Sparks Excel 2010 Advanced course/workshop.

This Training Manual is made available to better follow along the instructor during the Global Sparks Excel 2010 Advanced course/workshop. Excel 2010 Advanced Training Manual Corporate Training Materials by Global Sparks This Training Manual is made available to better follow along the instructor during the Global Sparks Excel 2010 Advanced

More information

EXCEL ADVANCED Linda Muchow

EXCEL ADVANCED Linda Muchow EXCEL ADVANCED 2016 Alexandria Technical and Community College Customized Training Technology Specialist 1601 Jefferson Street, Alexandria, MN 56308 320-762-4539 Linda Muchow lindac@alextech.edu 1 Table

More information

EXCEL TUTORIAL.

EXCEL TUTORIAL. EXCEL TUTORIAL Excel is software that lets you create tables, and calculate and analyze data. This type of software is called spreadsheet software. Excel lets you create tables that automatically calculate

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

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

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited

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

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

TABLE OF CONTENTS. i Excel 2016 Advanced. 1 INTRODUCTION Method Software and other settings Exercise files 2

TABLE OF CONTENTS. i Excel 2016 Advanced. 1 INTRODUCTION Method Software and other settings Exercise files 2 i TABLE OF CONTENTS 1 INTRODUCTION 1 1.1 Method 1 1.2 Software and other settings 2 1.3 Exercise files 2 2 MULTIPLE WORKSHEETS 3 2.1 Working with multiple worksheets 3 Adding a worksheet 4 Deleting a worksheet

More information

M i c r o s o f t E x c e l A d v a n c e d P a r t 3-4. Microsoft Excel Advanced 3-4

M i c r o s o f t E x c e l A d v a n c e d P a r t 3-4. Microsoft Excel Advanced 3-4 Microsoft Excel 2010 Advanced 3-4 0 Absolute references There may be times when you do not want a cell reference to change when copying or filling cells. You can use an absolute reference to keep a row

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

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

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

1. Managing Information in Table

1. Managing Information in Table 1. Managing Information in Table Spreadsheets are great for making lists (such as phone lists, client lists). The researchers discovered that not only was list management the number one spreadsheet activity,

More information

COURSE CONTENT EXCEL BASIC ONE DAY

COURSE CONTENT EXCEL BASIC ONE DAY COURSE CONTENT EXCEL BASIC ONE DAY SOME OF THE BENEFITS OF USING A SPREADSHEET STARTING EXCEL GETTING YOURSELF ORIENTATED WITH THE EXCEL SCREEN THE OFFICE BUTTON/FILE TAB THE TITLE BAR THE RIBBONS GROUPS

More information

Microsoft Office Excel 2010: Intermediate (R2) Course Overview. Course Outline

Microsoft Office Excel 2010: Intermediate (R2) Course Overview. Course Outline Microsoft Office Excel 2010: Intermediate (R2) Course Overview This course builds on the skills and concepts taught in Excel 2010: Basic, First Look Edition. Students will learn how to use multiple worksheets

More information

2013 ADVANCED MANUAL

2013 ADVANCED MANUAL 2013 ADVANCED MANUAL C B C H O U S E 2 4 C A N N I N G S T R E E T E D I N B U R G H E H 3 8 E G 0 1 3 1 2 7 2 2 7 9 0 W W W. I T R A I N S C O T L A N D. C O. U K I N F O @ I T R A I N S C O T L A N D.

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

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 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

Data Should Not be a Four Letter Word Microsoft Excel QUICK TOUR

Data Should Not be a Four Letter Word Microsoft Excel QUICK TOUR Toolbar Tour AutoSum + more functions Chart Wizard Currency, Percent, Comma Style Increase-Decrease Decimal Name Box Chart Wizard QUICK TOUR Name Box AutoSum Numeric Style Chart Wizard Formula Bar Active

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

Excel Introduction to Excel Databases & Data Tables

Excel Introduction to Excel Databases & Data Tables Creating an Excel Database Key field: Each record should have some field(s) that helps to uniquely identify them, put these fields at the start of your database. In an Excel database each column is a field

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

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

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

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

How to Excel - Part 2

How to Excel - Part 2 Table of Contents Exercise 1: Protecting cells and sheets... 3 Task 1 Protecting sheet... 3 Task 2 Protecting workbook... 3 Task 3 Unprotect workbook and sheet... 3 Task 4 Protecting cells... 4 Protecting

More information

Advanced Excel. Click Computer if required, then click Browse.

Advanced Excel. Click Computer if required, then click Browse. Advanced Excel 1. Using the Application 1.1. Working with spreadsheets 1.1.1 Open a spreadsheet application. Click the Start button. Select All Programs. Click Microsoft Excel 2013. 1.1.1 Close a spreadsheet

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

Excel Project 5 Creating Sorting, and Querying a Worksheet Database

Excel Project 5 Creating Sorting, and Querying a Worksheet Database Excel Project 5 Creating Sorting, and Querying a Worksheet Database A Microsoft Excel table can function as a simple database (organized collection of data). When an individual or small business needs

More information

Excel Tables & PivotTables

Excel Tables & PivotTables Excel Tables & PivotTables A PivotTable is a tool that is used to summarize and reorganize data from an Excel spreadsheet. PivotTables are very useful where there is a lot of data that to analyze. PivotTables

More information

Full file at Excel Chapter 2 - Formulas, Functions, Formatting, and Web Queries

Full file at   Excel Chapter 2 - Formulas, Functions, Formatting, and Web Queries Excel Chapter 2 - Formulas, Functions, Formatting, and Web Queries MULTIPLE CHOICE 1. To start a new line in a cell, press after each line, except for the last line, which is completed by clicking the

More information

Group sheets 2, 3, 4, and 5 1. Click on SHEET Hold down the CMD key and as you continue to hold it down, click on sheets 3, 4, and 5.

Group sheets 2, 3, 4, and 5 1. Click on SHEET Hold down the CMD key and as you continue to hold it down, click on sheets 3, 4, and 5. Data Entry, Cell Formatting, and Cell Protection in Excel 2004 In this workshop, you start by adding to the number of sheets in your workbook and then grouping four of the sheets to set up a small spreadsheet

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

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 2002 (XP) FOCUS ON: DESIGNING SPREADSHEETS AND WORKBOOKS

EXCEL 2002 (XP) FOCUS ON: DESIGNING SPREADSHEETS AND WORKBOOKS EXCEL 2002 (XP) FOCUS ON: DESIGNING SPREADSHEETS AND WORKBOOKS ABOUT GLOBAL KNOWLEDGE, INC. Global Knowledge, Inc., the world s largest independent provider of integrated IT education solutions, is dedicated

More information

1. Two types of sheets used in a workbook- chart sheets and worksheets

1. Two types of sheets used in a workbook- chart sheets and worksheets Quick Check Answers Session 1.1 1. Two types of sheets used in a workbook- chart sheets and worksheets 2. Identify the active cell- The active cell is surrounded by a thick border and its cell reference

More information

Working with Basic Functions. Basic Functions. Excel 2010 Working with Basic Functions. The Parts of a Function. Page 1

Working with Basic Functions. Basic Functions. Excel 2010 Working with Basic Functions. The Parts of a Function. Page 1 Excel 2010 Working with Basic Functions Working with Basic Functions Page 1 Figuring out formulas for calculations you want to make in Excel can be tedious and complicated. Fortunately, Excel has an entire

More information

EVALUATION ONLY. In this lesson, you will use advanced. Functions EXCEL 2013 CASE STUDY: ANALYZING A FUNDRAISING CAMPAIGN LEARNING OBJECTIVES

EVALUATION ONLY. In this lesson, you will use advanced. Functions EXCEL 2013 CASE STUDY: ANALYZING A FUNDRAISING CAMPAIGN LEARNING OBJECTIVES EXCEL 2013 3Applying Advanced Functions In this lesson, you will use advanced functions and what-if analyses to facilitate decision making. Complex worksheets for decision making often require advanced

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

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

Syllabus KCXXXXXX: Excel Level I, Version 2010

Syllabus KCXXXXXX: Excel Level I, Version 2010 Syllabus KCXXXXXX: Excel Level I, Version 2010 ITSW 1022 Introduction to Electronic Spreadsheets 8 classroom hours Course Description: This course is designed to introduce the student to basic spreadsheet

More information

Pivot Tables, Lookup Tables and Scenarios

Pivot Tables, Lookup Tables and Scenarios Introduction Format and manipulate data using pivot tables. Using a grading sheet as and example you will be shown how to set up and use lookup tables and scenarios. Contents Introduction Contents Pivot

More information

For comprehensive certification training, students should complete Excel 2007: Basic, Intermediate, and Advanced. Course Introduction

For comprehensive certification training, students should complete Excel 2007: Basic, Intermediate, and Advanced. Course Introduction Microsoft Office Excel 2007: Intermediate Course Length: 1 Day Course Overview This course builds on the skills and concepts taught in Excel 2007: Basic. Students will learn how to use multiple worksheets

More information

Microsoft Office Excel 2010: Intermediate. Course Overview. Course Length: 1 Day. Course Overview

Microsoft Office Excel 2010: Intermediate. Course Overview. Course Length: 1 Day. Course Overview Microsoft Office Excel 2010: Intermediate Course Length: 1 Day Course Overview This course builds on the skills and concepts taught in Excel 2010: Basic, First Look Edition. Students will learn how to

More information

Excel Intermediate

Excel Intermediate Excel 2013 - Intermediate (103-124) Advanced Functions Quick Links Range Names Pages EX394 EX407 Data Validation Pages EX410 EX419 VLOOKUP Pages EX176 EX179 EX489 EX500 IF Pages EX172 EX176 EX466 EX489

More information

EXCEL 2010 PROCEDURES

EXCEL 2010 PROCEDURES EXCEL 2010 PROCEDURES Starting Excel 1 Click the Start 2 Click All Programs 3 Click the Microsoft Office folder icon 4 Click Microsoft Excel 2010 Naming and Saving (Ctrl+S) a Workbook 1 Click File 2 Click

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 2013 KPMG Excel Formulas and Functions

Excel 2013 KPMG Excel Formulas and Functions Excel 2013 KPMG Excel Formulas and Functions Introduction This document looks at linking between Excel Sheets and Excel Workbooks, including copy/paste link, creating three dimensional formulas, and using

More information

Table of Contents. 1. Creating a Microsoft Excel Workbook...1 EVALUATION COPY

Table of Contents. 1. Creating a Microsoft Excel Workbook...1 EVALUATION COPY Table of Contents Table of Contents 1. Creating a Microsoft Excel Workbook...1 Starting Microsoft Excel...1 Creating a Workbook...2 Saving a Workbook...3 The Status Bar...5 Adding and Deleting Worksheets...6

More information

Performing Basic Calculations

Performing Basic Calculations 7.1 LESSON 7 Performing Basic Calculations After completing this lesson, you will be able to: Build formulas. Copy formulas. Edit formulas. Use the SUM function and AutoSum. Use the Insert Function feature.

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

Excel Select a template category in the Office.com Templates section. 5. Click the Download button.

Excel Select a template category in the Office.com Templates section. 5. Click the Download button. Microsoft QUICK Excel 2010 Source Getting Started The Excel Window u v w z Creating a New Blank Workbook 2. Select New in the left pane. 3. Select the Blank workbook template in the Available Templates

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

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

CHAPTER TWO: SPREADS HEETS WITH EXCEL 1

CHAPTER TWO: SPREADS HEETS WITH EXCEL 1 CHAPTER TWO: SPREADS HEETS WITH EXCEL 1 CHAPTER 2 SPREADSHEETS WITH EXCEL TOPIC Create Pivot Tables Create and Modify Charts Sort and Filter CHAPTER TWO: SPREADS HEETS WITH EXCEL 2 CREATE AND MODIFY CHARTS

More information

Section 3. Topics Covered

Section 3. Topics Covered Section 3 Topics Covered " Calculating using formulas... 3-2 " Copying formulas... 3-7 " Using absolute cell addresses... 3-13 " Calculating results using AutoCalculate... 3-18# " Using functions... 3-21

More information

Adding records Pasting records Deleting records Sorting records Filtering records Inserting and deleting columns Calculated columns Working with the

Adding records Pasting records Deleting records Sorting records Filtering records Inserting and deleting columns Calculated columns Working with the Show All About spreadsheets You can use a spreadsheet to enter and calculate data. A spreadsheet consists of columns and rows of cells. You can enter data directly into the cells of the spreadsheet and

More information

MICROSOFT Excel 2010 Advanced Self-Study

MICROSOFT Excel 2010 Advanced Self-Study MICROSOFT Excel 2010 Advanced Self-Study COPYRIGHT This manual is copyrighted: S&G Training Limited. This manual may not be copied, photocopied or reproduced in whole or in part without the written permission

More information

DOWNLOAD PDF MICROSOFT EXCEL ALL FORMULAS LIST WITH EXAMPLES

DOWNLOAD PDF MICROSOFT EXCEL ALL FORMULAS LIST WITH EXAMPLES Chapter 1 : Examples of commonly used formulas - Office Support A collection of useful Excel formulas for sums and counts, dates and times, text manipularion, conditional formatting, percentages, Excel

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

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

Microsoft Excel XP. Intermediate

Microsoft Excel XP. Intermediate Microsoft Excel XP Intermediate Jonathan Thomas March 2006 Contents Lesson 1: Headers and Footers...1 Lesson 2: Inserting, Viewing and Deleting Cell Comments...2 Options...2 Lesson 3: Printing Comments...3

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

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

The Excel worksheet contains 16,384 rows that extend down the worksheet, numbered 1 through

The Excel worksheet contains 16,384 rows that extend down the worksheet, numbered 1 through Microsoft Excel Microsoft Excel allows you to create professional spreadsheets and charts. It performs numerous functions and formulas to assist you in your projects. The Excel screen is devoted to the

More information

Microsoft Excel 2013/2016 Pivot Tables

Microsoft Excel 2013/2016 Pivot Tables Microsoft Excel 2013/2016 Pivot Tables Creating PivotTables PivotTables are powerful data analysis tools. They let you summarize data in various ways and instantly change the view you use. A PivotTable

More information

Sample Chapters. To learn more about this book, visit the detail page at: go.microsoft.com/fwlink/?linkid= Copyright 2010 by Curtis Frye

Sample Chapters. To learn more about this book, visit the detail page at: go.microsoft.com/fwlink/?linkid= Copyright 2010 by Curtis Frye Sample Chapters Copyright 2010 by Curtis Frye All rights reserved. To learn more about this book, visit the detail page at: go.microsoft.com/fwlink/?linkid=191751 Chapter at a Glance Analyze data dynamically

More information

1. Managing Information in Table

1. Managing Information in Table 1. Managing Information in Table Spreadsheets are great for making lists (such as phone lists, client lists). The researchers discovered that not only was list management the number one spreadsheet activity,

More information

Microsoft How to Series

Microsoft How to Series Microsoft How to Series Getting Started with EXCEL 2007 A B C D E F Tabs Introduction to the Excel 2007 Interface The Excel 2007 Interface is comprised of several elements, with four main parts: Office

More information

Acknowledgements About the Author Starting off on the Right Foot p. 1 Basic Terminology p. 2 Title Bar p. 3 Menu Bar p. 3 Active Cell p.

Acknowledgements About the Author Starting off on the Right Foot p. 1 Basic Terminology p. 2 Title Bar p. 3 Menu Bar p. 3 Active Cell p. Acknowledgements p. a About the Author p. e Starting off on the Right Foot p. 1 Basic Terminology p. 2 Title Bar p. 3 Menu Bar p. 3 Active Cell p. 3 Toolbar Collections p. 3 Toolbar Collections p. 4 Help

More information

ENTERING DATA & FORMULAS...

ENTERING DATA & FORMULAS... Overview NOTESOVERVIEW... 2 VIEW THE PROJECT... 5 NAVIGATING... 6 TERMS... 6 USING KEYBOARD VS MOUSE... 7 The File Tab... 7 The Quick-Access Toolbar... 8 Ribbon and Commands... 9 Contextual Tabs... 10

More information

Creating a Pivot Table

Creating a Pivot Table Contents Introduction... 1 Creating a Pivot Table... 1 A One-Dimensional Table... 2 A Two-Dimensional Table... 4 A Three-Dimensional Table... 5 Hiding and Showing Summary Values... 5 Adding New Data and

More information

1 THE PNP BASIC COMPUTER ESSENTIALS e-learning (MS Excel 2007)

1 THE PNP BASIC COMPUTER ESSENTIALS e-learning (MS Excel 2007) 1 THE PNP BASIC COMPUTER ESSENTIALS e-learning (MS Excel 2007) 2 THE PNP BASIC COMPUTER ESSENTIALS e-learning (MS Excel 2007) TABLE OF CONTENTS CHAPTER 1: GETTING STARTED... 5 THE EXCEL ENVIRONMENT...

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

FOCUS ON: DATABASE MANAGEMENT

FOCUS ON: DATABASE MANAGEMENT EXCEL 2002 (XP) FOCUS ON: DATABASE MANAGEMENT December 16, 2005 ABOUT GLOBAL KNOWLEDGE, INC. Global Knowledge, Inc., the world s largest independent provider of integrated IT education solutions, is dedicated

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

European Computer Driving Licence. Advanced Spreadsheet Software BCS ITQ Level 3. Syllabus Version 2.0

European Computer Driving Licence. Advanced Spreadsheet Software BCS ITQ Level 3. Syllabus Version 2.0 ECDL Advanced European Computer Driving Licence Advanced Spreadsheet Software BCS ITQ Level 3 Using Microsoft Excel 2010 Syllabus Version 2.0 This training, which has been approved by BCS, The Chartered

More information

Excel Formulas 2018 Cindy Kredo Page 1 of 23

Excel Formulas 2018 Cindy Kredo Page 1 of 23 Excel file: Excel_Formulas_BeyondIntro_Data.xlsx Lab One: Sumif, AverageIf and Countif Goal: On the Demographics tab add formulas in Cells C32, D32 and E32 using the above functions. Use the cross-hair

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

Customer details are included on a separate worksheet (Customer Look Up) Item details are included on a separate worksheet (Item Look Up)

Customer details are included on a separate worksheet (Customer Look Up) Item details are included on a separate worksheet (Item Look Up) Creating an Invoice System using Excel Purpose To create a basic invoicing system which can be used to create invoices which can then be printed to pdf to provide a permanent copy and to print out and

More information

Validate and Protect Data

Validate and Protect Data Validate and Protect Data Chapter 8 Objectives In this section you will Restrict Data Entry to a Cell Test the Data Entered in a Cell for Validity Display Instructions for Data Entry Display Error Messages

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

Lecture- 5. Introduction to Microsoft Excel

Lecture- 5. Introduction to Microsoft Excel Lecture- 5 Introduction to Microsoft Excel The Microsoft Excel Window Microsoft Excel is an electronic spreadsheet. You can use it to organize your data into rows and columns. You can also use it to perform

More information

Quick Reference Guide 8 Excel 2013 for Windows Keyboard Shortcut Keys

Quick Reference Guide 8 Excel 2013 for Windows Keyboard Shortcut Keys Quick Reference Guide 8 Excel 2013 for Windows Keyboard Shortcut Keys Control Shortcut s Ctrl + PgDn Ctrl + PgUp Ctrl + Shift + & Ctrl + Shift_ Ctrl + Shift + ~ Ctrl + Shift + $ Ctrl + Shift + % Ctrl +

More information

Using Excel for a Gradebook: Advanced Gradebook Formulas

Using Excel for a Gradebook: Advanced Gradebook Formulas Using Excel for a Gradebook: Advanced Gradebook Formulas Objective 1: Review basic formula concepts. Review Basic Formula Concepts Entering a formula by hand: Always start with an equal sign, and click

More information