Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex

Size: px
Start display at page:

Download "Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex"

Transcription

1 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 data No blank rows or columns Format a header row (different format or capitalization) Remove pre-existing calculations Remove filters (look for funnel next to column name) Create a table Tables facilitate: Row and column formatting Removal of duplicates Automatic filter buttons Automatic functions in a total row Insert tab > Styles group > Format as Table Selection tips Group sheets Formulas Formulas are instructions to perform mathematical calculations on an Excel spreadsheet. Rules: All formulas begin with = Operators include + - * / Order of operations: Parentheses Exponentiation Multiplication and Division Addition and Subtraction Use the mouse or track pad to specify cells when writing a formula. Refer to cells and cell ranges in formulas Do not type specific numbers. Using cell addresses instead of specific numbers enables Excel to automatically calculate formula results when the data changes. Identify a range of cells by clicking the cell in the upper left corner (first cell in the range) followed by a colon (:) and then click the cell in the lower right corner (last cell in the range). An alternative is to drag the mouse pointer to select a range. Use Excel s fill handle to copy formulas down a column or across a row. The fill handle is a black that appears when you rest the mouse pointer in the lower right corner of a cell.

2 Functions Relative, Absolute and Mixed References When you copy a formula from one location to another, Excel adjusts the formula to its new location. This is called a relative reference. For example, if the cell address A1 is copied down a row, the row part of the formula will change to A2, A3, A4, etc. If the number in A1 is copied across a column to B1, the column part of the formula will change to B1, C1, D1, etc. To prevent a cell from adjusting the formula when copied, type $ before the cell address to be copied. This is called an absolute reference. For example, if the cell reference $C$1 is copied down or across, it will not change. A mixed reference includes both a relative and absolute reference. For example, if a formula in cell address C$1 is copied to cell D2, the reference to column C will change to D, but the reference to row 1 remains number 1. It is absolute. If a formula in cell $C1 is copied to cell D2, the reference to column C remains, but the reference to row 1 adjusts to row 2. Definition: A function is a built-in formula. Functions usually have a descriptive name, so it is easy to recognize what calculation the function will perform. Examples: SUM will add numbers in columns or rows. AVERAGE will average a range of numbers. MAX will find the highest number in a range. MIN will identify the lowest number in a range. More complex functions include VLOOKUP and IF. Functions are arranged in categories such as Financial, Logical and Lookup & Reference. Type a function or use the Function Wizard on the ribbon:

3 Errors If a formula or function contains an error, Excel displays an error message. Examples of error message include: Error Meaning #NULL! A space was used in formulas that reference multiple ranges; a comma separates range references #NUM! A formula has invalid numeric data for the type of operation #REF! A reference is invalid #VALUE! The wrong type of operand or function argument is used Tips Use descriptive range names for easy identification. Range names automatically create an absolute reference. Example: The range name Products could refer to cells B2:D51628 where Data in Column B = Product Name Data in Column C = Vendor Data in Column D = Price To create a range name: 1. Select the range you want to name. 2. Click in the Name box just above Column A. 3. Type a descriptive name that is not a cell address. (Example: Qtr1 is a cell address so it cannot be a range name.) 4. The first character in a range name must be a letter, not a number. 5. Do not use spaces in a range name. 6. Press Enter when you have finished.

4 Excel VLOOKUP VLOOKUP is an Excel function used to look up data in a Vertical Column. The letter "V" in VLOOKUP stands for "vertical". It is used to differentiate VLOOKUP from the HLOOKUP function that looks up a value in the Top Row of an array (H stands for "horizontal"). VLookup is like looking up a phone number in a telephone book. (Remember those?) You tell Excel where the data is located (the phone book) and which data column the information you request (phone number) is located. Except instead of specifying the data itself, you specify the number of the column where the phone number resides, counting from the left side of the data. Another example is looking up a part number in a list of airplane parts. The syntax is: =VLOOKUP(lookupvalue,search_location,column#where_searched_item_is_located) Commas separate the 3 required components of a lookup function: Part 1 Part 2 Part 3 Part 4 One cell in a major list that contains data to look for A separate range where the data you seek is located A column number, counting from the left-most column, containing the data you need This data will be copied to the cell in the major list (Optional) TRUE or FALSE

5

6 Rules: There are no spaces in the function. The lookup value MUST be located in the first column. The data reference must be an absolute reference to prevent it from changing when copying your VLookup formula to other cells. (Use $ before the column letter and $ before the row number). Example: $A1:$E5692 Excel will return an approximate value if you choose TRUE and the exact value is not within the range you specify. Use quotation marks ( ) to indicate you are searching for text ( Product 1 ) In VLOOKUP formulas, all values are case-insensitive, meaning that uppercase and lowercase characters are treated as equivalent. If the lookup value is smaller than the smallest value in the first column of table_array, the VLOOKUP function returns the #N/A error. If the 3rd parameter (col_index_num) is less than 1, the VLOOKUP formula will return the #VALUE! error. In case it is greater than the number of columns in table_array, the formula will return the #REF! error. When searching with approximate match (range_lookup set to TRUE or omitted), always have the data in the first column of table_array sorted in ascending order. And finally, remember about the importance of the last parameter. Supply TRUE for approximate match or FALSE for exact match, and it will save you a lot of headache. Good news! If the lookup range is in a different worksheet or even a different workbook, you don't have to type the name of the worksheet or workbook manually. Be sure the workbook file is open. Then simply start typing the formula. When it comes to the table_array argument, switch to the lookup worksheet or workbook and select the range using a mouse. Once you close the workbook with your lookup table, your VLOOKUP formula will work anyway, but it will display the full path for the lookup workbook, as shown below.

7 Using wildcard characters in VLOOKUP formulas As in many other formulas, you can use the following wildcard characters in the Excel VLOOKUP function: Question mark (?) to match any single character, and Asterisk (*) to match any sequence of characters. Using wildcard characters in your VLOOKUP formulas may prove useful in many cases: When you do not remember the exact text you are looking for. When you want to find some word that is part of the cell's contents. Be aware that the VLOOKUP function searches by the entire content of a cell, as if you selected the option "Match entire cell content" in the standard Excel Find dialog. When a lookup column contains extra leading or trailing spaces. (If that is the case, you may be puzzled trying to figure out why the normal formula does not work.) Example: Look up text starting or ending with certain characters Suppose you want to find a certain customer in the database below. You cannot remember his last name, but you know it starts with ack. So the following VLOOKUP formula will find what you need. =VLOOKUP("ack*",$A$2:$C$11,1,FALSE)

8 How to use a named range or table in VLOOKUP formulas If you use the same lookup range in several VLOOKUP formulas, you can created a named range for it and type the name directly in the table_array argument of your VLookup formula. To create a named range, just select the cells and type any name in the Name box, to the left of the Formula bar. And now you can write the following VLOOKUP formula to get Product 1's price: =VLOOKUP("Product 1",Products,2) Most range names in Excel apply to the entire workbook, so you don't need to specify the worksheet's name, even if your lookup range resides in a different worksheet. If it is in another workbook, you have to put the workbook's name before the named range, for example: =VLOOKUP("Product 1",PriceList.xlsx!Products,2) Using named ranges can be a good alternative to absolute cell references. Since a named range doesn't change when a formula is copied to other cells, you can be sure that your lookup range will always remain correct.

9 If you have converted a range of cells into a fully-functional Excel table (Insert tab > Table), then you can select the lookup range using a mouse, and Microsoft Excel will automatically add the columns' names or the table name to the formula. The complete formula may look similar to this: =VLOOKUP("Product 1",Table46[[Product]:[Price]],2) or even =VLOOKUP("Product 1",Table46,2). As well as named ranges, columns names are constant and your cell references won't change no matter where the VLOOKUP formula is copied within the same workbook. Using wildcard characters in VLOOKUP formulas As well as in many other formulas, you can use the following wildcard characters in the Excel VLOOKUP function: Question mark (?) to match any single character, and Asterisk (*) to match any sequence of characters. Using wildcard chars in your VLOOKUP formulas may prove really useful in many cases: When you do not remember the exact text you are looking for. When you want to find some word that is part of the cell's contents. Be aware that the VLOOKUP function searches by the entire content of a cell, as if you selected the option "Match entire cell content" in the standard Excel Find dialog. When a lookup column contains extra leading or trailing spaces. If it is the case, you may rack your brain trying to figure out why the normal formula does not work. Suppose, you want to find a certain customer in the below database. You cannot remember his surname, but you know it starts with "ack". So, the following VLOOKUP formula will work a treat: =VLOOKUP("ack*",$A$2:$C$11,1,FALSE)

10 Once you are sure you've found the correct name, you can use a similar VLOOKUP formula to get the sum paid by that customer. You only have to change the 3 rd parameter in the formula to the appropriate column number, column C (3) in our case: =VLOOKUP("ack*",$A$2:$C$11,3,FALSE) Here a few more examples of VLOOKUP formulas with wildcard characters: =VLOOKUP("*man",$A$2:$C$11,1,FALSE) - find the name ending with "man". =VLOOKUP("ad*son",$A$2:$C$11,1,FALSE) - find the name starting with "ad" and ending with "son". =VLOOKUP("?????",$A$2:$C$11,1,FALSE) - find a 5-character last name. Note. For a wildcard VLOOKUP formula to work correctly, you always have to add FALSE as the last parameter. If your lookup range contains more than one entry that meets the wildcard criteria, the first found value will be returned.

11 PivotTables What is a pivot table in Excel? An Excel pivot table, aka PivotTable, is a tool to explore and summarize large amounts of data, analyze related totals and present summary reports. Pivot table reports are essentially designed to: Present large amounts of data in a user-friendly way. Summarize data by categories and subcategories. Filter, group, sort and conditionally format different subsets of data so that you can focus on the most relevant information. Rotate rows to columns or columns to rows (which is called "pivoting") to view different summaries of the source data. Subtotal and aggregate numeric data in the spreadsheet. Expand or collapse the levels of data and drill down to see the details behind any total. Present concise and attractive online of your Excel data or printed reports. For example, you may have hundreds of entries in your Excel worksheet with sales figures of local resellers:

12 How to make a pivot table in Excel: quick start 1. Organize your source data in an Excel Table Before creating a pivot table, organize your data into rows and columns, and then convert your data range into an Excel Table. To do this, select all of the data, go to the Insert tab and click Table. Useful tips: Add unique, meaningful headings to your columns, they will turn into the pivot table's field names later. Make sure your source table contains no blank rows or columns, and no subtotals. To make it easier to maintain your pivot table, you can name your source table by switching to the Design tab and typing the name in the Table Name box the upper right corner of your worksheet. 2. Create a pivot table Select any cell in the source data table (if you are building a pivot table based on a range of cells, select all cells with the data that you want to include), and then go to the Insert tab > Tables group > PivotTable. This will open the Create PivotTable window. Make sure the correct table or range of cells is highlighted in the Table/Range field. Then choose the target location for your Excel pivot table: Selecting New Worksheet will place a pivot table in a new worksheet starting at cell A1. Selecting Existing Worksheet will place your pivot table at the specified location in an existing worksheet. In the Location box, click the Collapse Dialog button to choose the first cell where you want to position your pivot table. Clicking OK creates a blank pivot table in the target location. This will be the location of your new PivotTable. 3. Arrange the layout of your pivot table report The area where you work with the fields of your pivot tables is called PivotTable Field List. It is located in the right-hand part of the worksheet and divided into the header and body sections:

13 The Field Section contains the names of the fields that you can add to your pivot table. The filed names correspond to the column names of your source table. The Layout Section contains the Report Filter area, Column Labels, Row Labels area, and the Values area. Here you can arrange and re-arrange the fields of your pivot table. The changes that you make in the PivotTable Field List are immediately reflected to your pivot table. To add a field to the Layout section, select the check box next to the field name in the Field section. By default, Microsoft Excel adds the fields to the Layout section in the following way: Non-numeric fields are added to the Row Labels area Numeric fields are added to the Values area To delete a certain field from your Excel pivot table, you can either: Uncheck the box nest to the field's name in the Field section of the PivotTable pane. Right-click on the field in your pivot table, and then click "Remove Field_Name". To arrange pivot table fields: 1. Drag and drop fields between the 4 areas of the Layout section using the mouse. Alternatively, click and hold the field name in the Field section, and then drag it to an area in the Layout section - this will remove the field from the current area in the Layout section and place it in the new area. 2. Right-click the field name in the Field section, and then select the area where you want to add it. 3. Click on the filed in the Layout section to select it. This will also display the options available for that particular field.

14 4. Choose the function for the Values field (optional) By default, Microsoft Excel uses the Sum function for numeric value fields that you place in the Values area of the PivotTable Field List. When you place non-numeric data (text, date, or Boolean) or blank values in the Values area, the Count function is applied. The Summarize Values By option is available on the ribbon - on the Options tab, in the Calculations group. The functions' names are mostly self-explanatory: Sum - calculates the sum of the values. Count - counts the number of non-empty values (works as the COUNTA function). Average - calculates the average of the values. Max - finds the largest value. Min - finds the smallest value. Product - calculates the product of the values. Tips: Drag and drop fields to see how the power of a PivotTable can be easily manipulated. Right-click a cell for additional actions. Double-click any cell to "drill down" that data, which will create a new worksheet and show all records from the data source which went into that value. Group fields in an existing PivotTable o Right-click or choose Group from ribbon 5. Show different calculations in Pivot Table value fields (optional) Excel pivot tables provide one more useful feature that enables you to present values in different ways, for example show totals as percentage or rank values from smallest to largest and vice versa. The full list of calculation options is available here.

15 This feature is called Show Values As and it's accessible by right-clicking the field in the table in Excel 2016 and In Excel 2010 and lower, you can also find this option on the Options tab, in the Calculations group. Tip. The Show Values As feature may prove especially useful if you add the same field to a pivot table more than once and show, for example, total sales and sales as a percent of total at the same time.

16 Working with PivotTable Field List The pivot table pane, which is formally called PivotTable Field List, is the main tool that you use to arrange your summary table exactly the way you want. To make your work with the fields more comfortable, you may want to customize the pane to your liking. Changing the Field List view How to use pivot table in Excel Now that you know the pivot table basics, you can navigate to the Analyze and Design tabs of the PivotTable Tools in Excel 2016 and 2013 (Options and Design tabs in Excel 2010 and 2007) to explore the groups and options provided there. These tabs become available as soon as you click anywhere within your pivot table. You can also access options and features that are available for a specific pivot table element by right-clicking that element. How to get rid of "Row Labels" and "Column Labels" headings When you are creating a pivot table, Excel applies the Compact layout by default. This layout displays "Row Labels" and "Column Labels" as headings in the pivot table. These aren't very meaningful headings. An easy way to get rid of these headings is to switch the pivot table layout from Compact to Outline or Tabular. To do this, go to the Design ribbon tab, click the Report Layout dropdown, and choose Show in Outline Form or Show in Tabular Form.

17 This will cause your Excel pivot table to display the actual field names, as you see in the pivot table on the right, which makes much more sense. Another solution is to go to the Analyze (Options) tab, click the Options button, switch to the Display tab and uncheck the "Display Field Captions and Filter Dropdowns" box. However, this will remove all field captions as well as filter dropdowns in your pivot table. How to insert a slicer in a pivot table A slicer is similar to a filter, except choices are displayed in a dialog box. Click on any cell within the PivotTable for which you want to create a slicer. This activates a PivotTable contextual tab. On the Options tab, in the Sort & Filter group, click on the Insert Slicer button. In the Insert Slicers dialog box, click the checkboxes by the PivotTable fields you want to filter by. Note: You may need to hold the CTRL key to select multiple checkboxes. A slicer will be created on the same worksheet for every field that you select. Data in fields that are checked are displayed. Data in unchecked fields are hidden. How to insert a timeline in a pivot table A timeline is similar to a date filter, except choices are displayed in a dialog box. Click on any cell within the PivotTable for which you want to create a timeline. This activates a PivotTable contextual tab. On the Options tab, In the Sort & Filter group, click on the Insert Timeline button. In the Insert Timeline dialog box, click the checkboxes by the PivotTable dates you want to filter. Note: You may need to hold the CTRL key to select multiple checkboxes. A timeline will be created on the same worksheet for every field that you select. Dates in fields that are checked are displayed. Dates in unchecked fields are hidden.

18 How to refresh a pivot table in Excel Although a pivot table report is connected to your source data, you might be surprised to know that Excel does not refresh it automatically. You can get any data updates by performing a refresh operation manually, or have it refresh automatically when you open the workbook. Refresh the pivot table data manually 1. Click anywhere in your pivot table. 2. Right-click the pivot table, and choose Refresh from the context menu. To refresh all pivot tables in your Excel workbook, click the Refresh button arrow, and then click Refresh All. Note. If the format of your pivot table gets changed after refreshing, make sure the "Autofit column width on update" and "Preserve cell formatting on update" options are selected. After starting a refresh, you can review the status or cancel it if you've changed your mind. Just click on the Refresh button arrow, and then click either Refresh Status or Cancel Refresh. Refreshing a pivot table automatically when opening the workbook 1. On the Analyze / Options tab, in the PivotTable group, click Options > Options. 2. In the PivotTable Options dialog box, go to the Data tab, and select the Refresh data when opening the file check box.

19 How to delete an Excel pivot table If you no longer need a certain pivot table, you can delete it in a number of ways. If your pivot table resides in a separate worksheet, simply delete that sheet. If your pivot table is located along with some other data on a sheet, select the entire pivot table using the mouse and press the Delete key. Click anywhere in the pivot table that you want to delete, go to the Analyze tab in Excel 2016 and 2013 (Options tab in Excel 2010 and earlier) > Actions group, click the little arrow below the Select button, choose Entire PivotTable, and then press Delete. Pivot table examples The screenshots below demonstrate a few possible pivot table layouts for the same source data that might help you to get started on the right path. Pivot table example 1: Two-dimensional table

20 No Filter Rows: Product, Reseller Columns: Months Values: Sales

21 Pivot table example 2: Three-dimensional table Filter: Month Rows: Reseller Columns: Product Values: Sales This pivot table lets you filter the report by month.

22 Pivot table example 3: One field is displayed twice - as total and % of total No Filter Rows: Product, Reseller Values: SUM of Sales, % of Sales This pivot table shows total sales and sales as a percent of total at the same time.

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

Microsoft Excel 2010 Training. Excel 2010 Basics

Microsoft Excel 2010 Training. Excel 2010 Basics Microsoft Excel 2010 Training Excel 2010 Basics Overview Excel is a spreadsheet, a grid made from columns and rows. It is a software program that can make number manipulation easy and somewhat painless.

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

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

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

Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts. Microsoft Excel 2013 Enhanced

Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts. Microsoft Excel 2013 Enhanced Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts Microsoft Excel 2013 Enhanced Objectives Explore a structured range of data Freeze rows and columns Plan and create an Excel table Rename

More information

Excel 2013 PivotTables and PivotCharts

Excel 2013 PivotTables and PivotCharts Excel 2013 PivotTables and PivotCharts PivotTables... 1 PivotTable Wizard... 1 Creating a PivotTable... 2 Groups... 2 Rows Group... 3 Values Group... 3 Columns Group... 4 Filters Group... 5 Field Settings...

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 Tables and Pivot Tables

Excel Tables and Pivot Tables A) Why use a table in the first place a. Easy to filter and sort if you only sort or filter by one item b. Automatically fills formulas down c. Can easily add a totals row d. Easy formatting with preformatted

More information

Excel 2007/2010. Don t be afraid of PivotTables. Prepared by: Tina Purtee Information Technology (818)

Excel 2007/2010. Don t be afraid of PivotTables. Prepared by: Tina Purtee Information Technology (818) Information Technology MS Office 2007/10 Users Guide Excel 2007/2010 Don t be afraid of PivotTables Prepared by: Tina Purtee Information Technology (818) 677-2090 tpurtee@csun.edu [ DON T BE AFRAID OF

More information

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

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

More information

New Perspectives on Microsoft Excel Module 5: Working with Excel Tables, PivotTables, and PivotCharts

New Perspectives on Microsoft Excel Module 5: Working with Excel Tables, PivotTables, and PivotCharts New Perspectives on Microsoft Excel 2016 Module 5: Working with Excel Tables, PivotTables, and PivotCharts Objectives, Part 1 Explore a structured range of data Freeze rows and columns Plan and create

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

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

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

MICROSOFT OFFICE APPLICATIONS

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

More information

EXCEL 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

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 Intermediate. Click in the name column of our Range of Data. (Do not highlight the column) Click on the Data Tab in the Ribbon

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

More information

Excel 2. Module 2 Formulas & Functions

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

More information

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

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

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

More information

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

Excel Shortcuts Increasing YOUR Productivity

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

More information

Excel 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

File Name: Data File Pivot Tables 3 Hrs.xlsx

File Name: Data File Pivot Tables 3 Hrs.xlsx File Name: Data File Pivot Tables 3 Hrs.xlsx Lab 1: Create Simple Pivot Table to Explore the Basics 1. Select the tab labeled Raw Data Start and explore the data. 2. Position the cursor in Cell A2. 3.

More information

Excel 101. DJ Wetzel Director of Financial Aid Greenville Technical College

Excel 101. DJ Wetzel Director of Financial Aid Greenville Technical College Excel 101 DJ Wetzel Director of Financial Aid Greenville Technical College Introduction Spreadsheets are made up of : Columns identified with alphabetic headings Rows - identified with numeric headings.

More information

SUM - This says to add together cells F28 through F35. Notice that it will show your result is

SUM - This says to add together cells F28 through F35. Notice that it will show your result is COUNTA - The COUNTA function will examine a set of cells and tell you how many cells are not empty. In this example, Excel analyzed 19 cells and found that only 18 were not empty. COUNTBLANK - The COUNTBLANK

More information

I OFFICE TAB... 1 RIBBONS & GROUPS... 2 OTHER SCREEN PARTS... 4 APPLICATION SPECIFICATIONS... 5 THE BASICS...

I OFFICE TAB... 1 RIBBONS & GROUPS... 2 OTHER SCREEN PARTS... 4 APPLICATION SPECIFICATIONS... 5 THE BASICS... EXCEL 2010 BASICS Microsoft Excel I OFFICE TAB... 1 RIBBONS & GROUPS... 2 OTHER SCREEN PARTS... 4 APPLICATION SPECIFICATIONS... 5 THE BASICS... 6 The Mouse... 6 What Are Worksheets?... 6 What is a Workbook?...

More information

Getting Started with Excel

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

More information

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

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

Excel 2010: Getting Started with Excel

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

More information

Index. calculated columns in tables, switching on, 58 calculation options (manual and automatic), 132 case sensitive filter, implementing, 37

Index. calculated columns in tables, switching on, 58 calculation options (manual and automatic), 132 case sensitive filter, implementing, 37 Index # #All special item, 57 #Data special item, 56 #Header special item, 57 #ThisRow special item, 57 #Totals special item, 57 A absolute and relative cell references, 110 accept/reject changes to a

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

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

Introduction to Excel 2013

Introduction to Excel 2013 Introduction to Excel 2013 Copyright 2014, Software Application Training, West Chester University. A member of the Pennsylvania State Systems of Higher Education. No portion of this document may be reproduced

More information

Microsoft Excel 2010

Microsoft Excel 2010 Microsoft Excel 2010 omar 2013-2014 First Semester 1. Exploring and Setting Up Your Excel Environment Microsoft Excel 2010 2013-2014 The Ribbon contains multiple tabs, each with several groups of commands.

More information

Gloucester County Library System. Excel 2010

Gloucester County Library System. Excel 2010 Gloucester County Library System Excel 2010 Introduction What is Excel? Microsoft Excel is an electronic spreadsheet program. It is capable of performing many different types of calculations and can organize

More information

GO! with Microsoft Excel 2016 Comprehensive

GO! with Microsoft Excel 2016 Comprehensive GO! with Microsoft Excel 2016 Comprehensive First Edition Chapter 7 Creating PivotTables and PivotCharts Learning Objectives Create a PivotTable Report Use Slicers and Search Filters Modify a PivotTable

More information

EVALUATION ONLY. In this lesson, you will learn about Excel. Using LOOKUP Functions, PivotTables, and Macros EXCEL 2013 LESSON OUTLINE

EVALUATION ONLY. In this lesson, you will learn about Excel. Using LOOKUP Functions, PivotTables, and Macros EXCEL 2013 LESSON OUTLINE 12 EXCEL 2013 LESSON OUTLINE Using LOOKUP Functions, PivotTables, and Macros Introducing Lookup Functions Creating PivotTables Creating PivotCharts Changing Macro Security Recording Macros Running Macros

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

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

MS Office 2016 Excel Pivot Tables - notes

MS Office 2016 Excel Pivot Tables - notes Introduction Why You Should Use a Pivot Table: Organize your data by aggregating the rows into interesting and useful views. Calculate and sum data quickly. Great for finding typos. Create a Pivot Table

More information

Key concepts through Excel Basic videos 01 to 25

Key concepts through Excel Basic videos 01 to 25 Key concepts through Excel Basic videos 01 to 25 1) Row and Colum make up Cell 2) All Cells = Worksheet = Sheet 3) Name of Sheet is in Sheet Tab 4) All Worksheets = Workbook File 5) Default Alignment In

More information

Excel Basic 1 GETTING ACQUAINTED WITH THE ENVIRONMENT 2 INTEGRATION WITH OFFICE EDITING FILES 4 EDITING A WORKBOOK. 1.

Excel Basic 1 GETTING ACQUAINTED WITH THE ENVIRONMENT 2 INTEGRATION WITH OFFICE EDITING FILES 4 EDITING A WORKBOOK. 1. Excel Basic 1 GETTING ACQUAINTED WITH THE ENVIRONMENT 1.1 Introduction 1.2 A spreadsheet 1.3 Starting up Excel 1.4 The start screen 1.5 The interface 1.5.1 A worksheet or workbook 1.5.2 The title bar 1.5.3

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

Streamlined Reporting with

Streamlined Reporting with Streamlined Reporting with Presentation by: Ryan Black, M.B.A. Business and Fiscal Officer Office of the Provost Wright State University, Dayton, Ohio Microsoft Excel offers one of the most powerful software

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

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

More information

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

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

More information

IF & VLOOKUP Function

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

More information

Microsoft Excel Pivot Tables & Pivot Table Charts

Microsoft Excel Pivot Tables & Pivot Table Charts Microsoft Excel 2013 Pivot Tables & Pivot Table Charts A pivot table report allows you to analyze and summarize a million rows of data in Excel 2013 without entering a single formula. Pivot Tables let

More information

Microsoft Excel Level 2

Microsoft Excel Level 2 Microsoft Excel Level 2 Table of Contents Chapter 1 Working with Excel Templates... 5 What is a Template?... 5 I. Opening a Template... 5 II. Using a Template... 5 III. Creating a Template... 6 Chapter

More information

THE EXCEL ENVIRONMENT... 1 EDITING...

THE EXCEL ENVIRONMENT... 1 EDITING... Excel Essentials TABLE OF CONTENTS THE EXCEL ENVIRONMENT... 1 EDITING... 1 INSERTING A COLUMN... 1 DELETING A COLUMN... 1 INSERTING A ROW... DELETING A ROW... MOUSE POINTER SHAPES... USING AUTO-FILL...

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

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

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

More information

Advanced Excel. IMFOA Conference. April 11, :15 pm 4:15 pm. Presented By: Chad Jarvi, CPA President, Civic Systems

Advanced Excel. IMFOA Conference. April 11, :15 pm 4:15 pm. Presented By: Chad Jarvi, CPA President, Civic Systems Advanced Excel Presented By: Chad Jarvi, CPA President, Civic Systems IMFOA Conference April 11, 2019 3:15 pm 4:15 pm COPY AND PASTE... 4 USING THE RIBBON... 4 USING RIGHT CLICK... 4 USING CTRL-C AND CTRL-V...

More information

Introducing Excel Entering Text, Numbers and Dates

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

More information

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

WAAT-PivotTables Accounting Seminar

WAAT-PivotTables Accounting Seminar WAAT-PivotTables-08-26-2016-Accounting Seminar Table of Contents What does a PivotTable do?... 2 How to create PivotTable:... 2 Add conditions to the PivotTable:... 2 Grouping Daily Dates into Years, Quarters,

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

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

The subject of this chapter is the pivot table, the name given to a special

The subject of this chapter is the pivot table, the name given to a special Chapter 2: Generating Pivot Tables In This Chapter Understanding how to use pivot tables to summarize and analyze your data The many methods for creating pivot tables Pivoting the elements in the data

More information

10 Ways To Efficiently Analyze Your Accounting Data in Excel

10 Ways To Efficiently Analyze Your Accounting Data in Excel 10 Ways To Efficiently Analyze Your Accounting Data in Excel Live Demonstration Investment advisory services are offered through CliftonLarsonAllen Wealth Advisors, LLC, an SEC-registered investment advisor.

More information

MICROSOFT EXCEL 2002 (XP): LEVEL 3

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

More information

Microsoft Excel Microsoft Excel

Microsoft Excel Microsoft Excel Excel 101 Microsoft Excel is a spreadsheet program that can be used to organize data, perform calculations, and create charts and graphs. Spreadsheets or graphs created with Microsoft Excel can be imported

More information

Excel. Excel Options click the Microsoft Office Button. Go to Excel Options

Excel. Excel Options click the Microsoft Office Button. Go to Excel Options Excel Excel Options click the Microsoft Office Button. Go to Excel Options Templates click the Microsoft Office Button. Go to New Installed Templates Exercise 1: Enter text 1. Open a blank spreadsheet.

More information

File Name: Pivot Table Labs.xlsx

File Name: Pivot Table Labs.xlsx File Name: Pivot Table Labs.xlsx Lab Session 1: Create Simple Pivot Table with a Date Grouping Note: Instructions for the first lab are very detailed because it might be the first time you have created

More information

Office 2016 Excel Basics 21 Video/Class Project #33 Excel Basics 21: Relationships Rather than VLOOKUP for PivotTable Reports (Excel 2016 Data Model)

Office 2016 Excel Basics 21 Video/Class Project #33 Excel Basics 21: Relationships Rather than VLOOKUP for PivotTable Reports (Excel 2016 Data Model) Office 2016 Excel Basics 21 Video/Class Project #33 Excel Basics 21: Relationships Rather than VLOOKUP for PivotTable Reports (Excel 2016 Data Model) Goal in video # 21: Learn about how to use the Relationships

More information

Excel VLOOKUP. An EMIS Coordinator s Friend

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

More information

MS Excel Advanced Level

MS Excel Advanced Level MS Excel Advanced Level Trainer : Etech Global Solution Contents Conditional Formatting... 1 Remove Duplicates... 4 Sorting... 5 Filtering... 6 Charts Column... 7 Charts Line... 10 Charts Bar... 10 Charts

More information

Microsoft Excel 2010 Tutorial

Microsoft Excel 2010 Tutorial 1 Microsoft Excel 2010 Tutorial Excel is a spreadsheet program in the Microsoft Office system. You can use Excel to create and format workbooks (a collection of spreadsheets) in order to analyze data and

More information

CHAPTER 4: MICROSOFT OFFICE: EXCEL 2010

CHAPTER 4: MICROSOFT OFFICE: EXCEL 2010 CHAPTER 4: MICROSOFT OFFICE: EXCEL 2010 Quick Summary A workbook an Excel document that stores data contains one or more pages called a worksheet. A worksheet or spreadsheet is stored in a workbook, and

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

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

What is a spreadsheet?

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

More information

Excel 2007 New Features Table of Contents

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

More information

All Excel Topics Page 1 of 11

All Excel Topics Page 1 of 11 All Excel Topics Page 1 of 11 All Excel Topics All of the Excel topics covered during training are listed below. Pick relevant topics and tailor a course to meet your needs. Select a topic to find out

More information

STATISTICAL TECHNIQUES. Interpreting Basic Statistical Values

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

More information

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

Microsoft Excel 2016 LEVEL 3

Microsoft Excel 2016 LEVEL 3 TECH TUTOR ONE-ON-ONE COMPUTER HELP COMPUTER CLASSES Microsoft Excel 2016 LEVEL 3 kcls.org/techtutor Microsoft Excel 2016 Level 3 Manual Rev 11/2017 instruction@kcls.org Microsoft Excel 2016 Level 3 Welcome

More information

MICROSOFT EXCEL 2003 LEVEL 3

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

More information

Excel Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts. 6. You can use a table s sizing handle to add columns or rows to a table.

Excel Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts. 6. You can use a table s sizing handle to add columns or rows to a table. Excel Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts TRUE/FALSE 1. The header row must be row 1. ANS: F PTS: 1 REF: EX 234 2. If you freeze the top row in a worksheet and press Ctrl+Home,

More information

Microsoft Excel Lookup Functions - Reference Guide

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

More information

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

Excel Tutorials - File Size & Duration

Excel Tutorials - File Size & Duration Get Familiar with Excel 46.30 2.96 The Excel Environment 4.10 0.17 Quick Access Toolbar 3.10 0.26 Excel Ribbon 3.10 0.26 File Tab 3.10 0.32 Home Tab 5.10 0.16 Insert Tab 3.10 0.16 Page Layout Tab 3.10

More information

EXCEL AS BUSINESS ANALYSIS TOOL. 10-May-2015

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

More information

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

Microsoft Power Tools for Data Analysis #13 Power Pivot Into #1: Relationships Rather Than VLOOKUP Notes from Video:

Microsoft Power Tools for Data Analysis #13 Power Pivot Into #1: Relationships Rather Than VLOOKUP Notes from Video: Microsoft Power Tools for Data Analysis #13 Power Pivot Into #1: Relationships Rather Than VLOOKUP Notes from Video: Table of Contents: 1. What is Power Pivot (Basic Answer)?... 2 1) Power Pivot comes

More information

Excel 2016: Part 2 Functions/Formulas/Charts

Excel 2016: Part 2 Functions/Formulas/Charts Excel 2016: Part 2 Functions/Formulas/Charts Updated: March 2018 Copy cost: $1.30 Getting Started This class requires a basic understanding of Microsoft Excel skills. Please take our introductory class,

More information

Excel Advanced

Excel Advanced Excel 2016 - Advanced LINDA MUCHOW Alexandria Technical & Community College 320-762-4539 lindac@alextech.edu Table of Contents Macros... 2 Adding the Developer Tab in Excel 2016... 2 Excel Macro Recorder...

More information

Creating a Spreadsheet by Using Excel

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

More information

Agenda. Spreadsheet Applications. Spreadsheet Terminology A workbook consists of multiple worksheets. By default, a workbook has 3 worksheets.

Agenda. Spreadsheet Applications. Spreadsheet Terminology A workbook consists of multiple worksheets. By default, a workbook has 3 worksheets. Agenda Unit 1 Assessment Review Progress Reports Intro to Excel Learn parts of an Excel spreadsheet How to Plan a spreadsheet Create a spreadsheet Analyze data Create an embedded chart in spreadsheet In

More information

Chapter-2 Digital Data Analysis

Chapter-2 Digital Data Analysis Chapter-2 Digital Data Analysis 1. Securing Spreadsheets How to Password Protect Excel Files Encrypting and password protecting Microsoft Word and Excel files is a simple matter. There are a couple of

More information

Contents. 1. Managing Seed Plan Spreadsheet

Contents. 1. Managing Seed Plan Spreadsheet By Peter K. Mulwa Contents 1. Managing Seed Plan Spreadsheet Seed Enterprise Management Institute (SEMIs) Managing Seed Plan Spreadsheet Using Microsoft Excel 2010 3 Definition of Terms Spreadsheet: A

More information

Working with Microsoft Excel. Touring Excel. Selecting Data. Presented by: Brian Pearson

Working with Microsoft Excel. Touring Excel. Selecting Data. Presented by: Brian Pearson Working with Microsoft Excel Presented by: Brian Pearson Touring Excel Menu bar Name box Formula bar Ask a Question box Standard and Formatting toolbars sharing one row Work Area Status bar Task Pane 2

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

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

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited EXCEL INTERMEDIATE

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

More information