EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited EXCEL ADVANCED

Size: px
Start display at page:

Download "EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited EXCEL ADVANCED"

Transcription

1 EXCEL ADVANCED

2 Overview OVERVIEW... 2 ADVANCED FORMULAS... 4 VIEW THE PROJECT... 4 Viewing Available Excel Functions... 5 Help with Functions... 6 TEXT FUNCTIONS... 7 Text Functions Used in this Section:... 7 Basic Text Functions... 7 Basic IF Conditional Formulas... 8 Nesting IF Statements... 8 Concatenate Text Functions... 9 IF Concatenate Text Functions... 9 BLANK FUNCTIONS...10 ISBLANK Function...10 COUNTBLANK Function...10 ARRAY & NAME RANGE FORMULAS...11 Single Result Arrays...11 Using Name Ranges in Formulas...11 Viewing Formulas...12 REVIEW...12 LOOK UPS & OTHER FUNCTIONS...15 LOOKUPS...15 VLOOKUP...16 HLOOKUP...17 Lookup with a Range...17 ADDITIONAL FUNCTIONS...18 Calculating Days of the Week...18 SUMIF Function...20 REVIEW...21 DATA VIEWS, LAYOUTS AND RULES...22 TRANSPOSING...22 Transposing Data...22 Transposing Non-Adjacent Data...22 VALIDATIONS...23 Validation...23 Copying Validations...24 List Validation...25 CUSTOM VIEWS...26 Filters...26 Grouping...26 Creating Default View...26 Creating a New Custom View...27 Adding Custom View button to Quick Access toolbar...28 REVIEW...29 INTRODUCTION TO MACROS...31 WHAT IS A MACRO?...31 Accessing the Developer Tab...31 Storing (Saving) your Macros...32 Saving a Macro in a Workbook MCS Excel 2016 Advanced version 1.0 2

3 Understanding Absolute or Relative Macro References...33 Planning and Rehearsing...34 Practice the Macro Steps...35 Adjusting Column Width and Formatting...35 Recording a Macro...36 Adjusting Column Width and Formatting...36 Reviewing the Macro...36 Adding the Macro to the Quick Access Toolbar...37 Change the Quick Access Toolbar Button Face Icon...37 REVIEW...38 ADDITIONAL TOOLS...39 EMBEDDING AND LINKING...39 Embedding...40 Editing an Embedded object...40 Linking...41 Editing a Linked object...41 Linking as an icon...42 PROTECTING SPREADSHEETS...43 Locking Cells...43 Protecting the Spreadsheet...44 Unprotect a Spreadsheet...44 Protecting a Workbook...44 REVIEW Excel 2016 Advanced version MCS

4 View the Project Section I Advanced Formulas The Gourmet Hot Dog Shoppe sells all different types of hot dogs in their cafe. We will help them in maintaining their overall inventory, sales tracking, forecasting, and order status, by using Excel MCS Excel 2016 Advanced version 1.0 4

5 Viewing Available Excel Functions There are more functions available in Excel than you could cover in ten Excel classes. However, Excel provides a library of all available functions with links to their uses and examples if you are looking for something specific. 1. Click on the Formulas tab 2. In the Function Library group, click on the various Function category buttons and view the different functions available 3. Note that when you highlight one of the functions in the pop-up menu, by placing your mouse over it, a screen tip displays that gives you a definition of that function 4. You can also select the Insert Function button to view all functions at once 5. Click on the Logical function category button, and choose IF from the menu 6. In the dialog box, click the Help on this Function link 7. View the help screen 8. Close the help window when finished, then click the Cancel button on the dialog box Note: The definition of a function is any procedure which returns a value. There are many different types of functions in Excel: Text, Conditional, Statistical, Conversion, etc., that you can choose from to help you analyze your data. 5 Excel 2016 Advanced version MCS

6 Help with Functions If you need help with functions or are simply looking for a function to help with a calculation need, there is very good help in Excel that lists all of the Excel functions, defines their syntax, and even gives you examples you can copy and paste into Excel to practice. 1. Click on the Help button in the upper right hand corner of the Excel window 2. In the Excel Help window type: functions and press Enter 3. Click on the Excel functions (by category) item 4. Click on the Logical functions link to jump to that section 5. Click on the IF function 6. Note that it gives a description, syntax breakdown, other general remarks and examples 7. Close the Excel Help window when done 2016 MCS Excel 2016 Advanced version 1.0 6

7 Text Functions You can use text functions to manipulate your text in many ways including: to change the case of text, combine text and numbers, display or select only specific characters from a cell, and format text. Text Functions Used in this Section: Function What it Does Uses What it Looks Like LEFT Extracts a Pull the first 2 characters =LEFT(A2,2) designated # of characters starting from the left from a string: MID Extracts a Pull the 4 characters from =MID(A2,3,4) designated # of characters starting at the designated character. a string starting with the 3 rd character: CONCATENATE Combines multiple strings into one. Add the text from multiple cells into one string, or add additional numbers (like a date s year) to the date in a cell. =CONCATENATE(LEFT (A2,2),2007) Basic Text Functions Our product inventory consists of products identified by inventory numbers. Each inventory number tells us something about a product based on its: type, its product number, and the date it was ordered. The first 3 characters = the product type code, the 4 th through 8 th characters = the month and day it was last ordered, and the last character = the product number within its type. We can extract information from a product s inventory number to populate other cells by writing some text functions. 1. Open the Gourmet Hot Dog Shoppe Excel document 2. Make sure the Products sheet is the active one 3. Click on cell C8 4. Type: =Left(A8,3) and press Enter. This indicates that we want the 3 characters from cell A8 starting from the Left of the string. Note that you can start typing =Le and then choose the Left function from the pop-up menu by double-clicking it 5. Copy this formula all the way down to cell C25 6. Extract the order date of the product by clicking on cell E8 and typing: =MID(A8,4,5) and then press Enter. This indicates that we want to pull out text from the middle of the string, starting at the 4 th character and pulling 5 characters. 7 Excel 2016 Advanced version MCS

8 Basic IF Conditional Formulas Conditional Formulas make comparisons between expressions and return a result based on if they are True or False. You can use the AND, OR, NOT, and IF functions to create conditional formulas. Rather than having the Product Type code display in column C, we can have the full name of the product type listed, by creating an IF formula. Let s create an IF formula that inserts the actual word Food if it reads FOD from the A cell. 1. Click in cell C8 then click in the formula bar to edit the formula 2. Edit your formula so that it looks like the following: =IF(LEFT(A8,3)="FOD","Food","") 3. Press Enter and view the information in cell C8 4. Copy the formula all the way down to cell C25. Note how only the Food types are visible because our formula only displays the text Food if it finds FOD, and leaves it blank if it doesn t (indicated by two quotation marks side by side). Nesting IF Statements We can write a formula that contains multiple IF statements, which is called Nesting. Since our Product Type can be one of 3 different types, we want it to also fill in the other types besides just the one for Food. So to look at the Nesting IF formula logically it would look something like this: IF Condition then, Else IF Condition then, Else IF Condition then, False then. In terms of our spreadsheet it would logically look like this: IF Condition (the first 3 characters in cell A6 = FOD) then (put the word Food in the cell), IF Condition (the first 3 characters in cell A6 = PPD) then (put the word Paper Product in the cell), IF Condition (the first 3 characters in cell A6 = COD) then (put the word Condiment in the cell), or if none of these statements is true, then (leave the cell blank). So let s try typing out that logic in our formula. 1. Click in cell C8 then click in the formula bar to edit the formula 2. Edit your formula so that it looks like the following: =IF(LEFT(A8,3)="FOD","Food",IF(LEFT(A8,3)="PPD","Paper Product",IF(LEFT(A8,3)="COD","Condiment",""))) 3. Press Enter and view the information in cell C8 4. Copy the formula all the way down to cell C25. Note that all product types are now visible. Tip: When writing a conditional formula, 2 quote marks side by side ("") is the same as the word blank i.e., telling the cell to remain blank MCS Excel 2016 Advanced version 1.0 8

9 Concatenate Text Functions Concatenate means to connect separate units or items into a linked system. We want to include the current year (2017) in our date. So we can write a concatenate formula to do so. However, since it is the beginning of the year, we still have some December dates from 2016 so we want those to actually display with that year. 1. To include the current year in our date, click on cell E8 again, then click in the formula bar 2. Edit your formula so that it looks like the following: =CONCATENATE(MID(A8,4,5),"-2017") 3. Note that we used quotation marks around the text because we included a dash (-). By placing a dash between our year and the rest of the day and month date, Excel would have read that part of the formula as a subtraction, but by using quotation marks, it reads it as text. 4. Press Enter and review the contents in cell E8 5. Copy the formula from cell E8 all the way down through cell E25 IF Concatenate Text Functions This formula will work fine if all of our products were ordered in 2017, but we have some products that were ordered in Oct., Nov., and Dec. of So we want to create a formula with an IF scenario: If the fourth character contains the number 1 (for 12, 11, or 10 numbered months) then it needs to add the year 2016 to the date. If the fourth character does not contain the number 1, then it needs to add the year 2017 to the date. 1. Click on cell E8 again, then click in the formula bar 2. Edit your formula so that it looks like the following: =IF(MID(A8,4,1)="1",CONCATENATE(MID(A8,4,5),"-2016"), CONCATENATE(MID(A8,4,5),"-2017")) 3. Press Enter and view the contents in cell E8 4. Now copy your formula from cell E8 all the way down through cell E25 9 Excel 2016 Advanced version MCS

10 Blank Functions The ISBLANK and COUNTBLANK functions are used to tell if cells are blank or not. ISBLANK Function IS functions return a result based on a certain type of value found in a cell. So logically it looks like this: =IS Function Value. Let s write a formula using the IS Function that labels a product status to Order if there are no more left (the cell is blank), but that gives us the number of remaining inventory if there are any left. 1. Go to the Order Status sheet 2. Click in cell B5 3. Enter the following formula: =IF(ISBLANK(Products!F8),"Order",Products!F8) 4. Press Enter then view the contents in cell B5 5. Copy the formula from this cell all the way down to cell B21 COUNTBLANK Function You can also create a formula that will give you the count of the total amount of blank cells in a list. This is useful to calculate how much data is missing and needs to be updated. We will write a formula that counts the total number of cells in the Current Inventory column, that are blank. Function details: COUNTBLANK(range) 1. Go to the Products spreadsheet 2. In cell G3, write the following formula to count the number of blank cells in the Current Inventory column: =COUNTBLANK(F8:F25) 3. Press Enter when done 2016 MCS Excel 2016 Advanced version

11 Array & Name Range Formulas Array formulas are used to perform multiple calculations with single or multiple results. The key to array formulas is that they need to have the same number of rows and columns to work. You create array formulas in the same way that you create other formulas, except you press CTRL+SHIFT+ENTER to enter the formula. Single Result Arrays Singe array formulas can replace several different formulas with a single array formula. For example, we have the Unit Price of our items as well as the Quantity Sold for Q1. We want to get the Total Sales for the quarter from these numbers. Without an array formula, we would have to create another column to calculate the total sales for each of these items and then total that column. But an array formula lets us get our grand total without creating any additional columns or formulas. 1. Go to the Q1 Sales sheet 2. Click on cell B11 and type the following formula: =SUM(B4:B9*C4:C9) 3. Press Ctrl+Shift+Enter on your keyboard 4. View the results in cell B11 - note that the formula has brackets around it indicating that it is an array formula Using Name Ranges in Formulas You can name ranges of cells in Excel, like a column of information in a table, and then write formulas that use the names rather than cell references. This makes formulas easier to understand when looking at them, so that you don t have to refer to the specific cells. 1. On the Q1 Sales sheet, select cells E4:E9 2. In the Name Box, above the row headings, type: Q1January then press Enter 3. Select cells F4:F9 and name the range: Q1February then press Enter 4. Select cells G4:G9 and name the range: Q1March then press Enter 5. Click in cell E11 and type: =Sum(Q1January) then press Enter 6. Click in cell F11 and type: =Su then double-click on Sum from the popup menu to select it, then type: Q1 and double-click on Q1February from the popup menu to select it 7. Type a close parenthesis and then press Enter to complete 8. Click in cell G11 and type: =Sum( then click on the Formulas tab and in the Defined Names group, click on the Use in Formula button 9. From the drop-down list, select Q1March 10. Type a close parenthesis ( and then press Enter to complete Note: You cannot use spaces in the name box when naming cells or ranges. 11 Excel 2016 Advanced version MCS

12 Viewing Formulas When you look at a spreadsheet, you are seeing the value of each cell meaning that if there is a formula behind it, you don t see the formula, only the results or value of that formula, unless you click on the cell and view the formula in the formula bar. However, you can quickly display all formulas in a spreadsheet without having to click on each of them. 1. Press Ctrl+` and view the formulas and look at your newly created Named Range formulas 2. Press Ctrl+` again to go back to the default display to only see the values in each cell 2016 MCS Excel 2016 Advanced version

13 Review The Gourmet Hot Dog Shoppe has some additional products that they will be adding to their menu. These products need to be identified by their inventory number just like the existing products. In this case, the product code represents the date they are expected to be ordered. 1. Go to the Future Products sheet. 2. Write a formula in cell C8 that takes the first 3 letters from the Inventory Number (in cell A8) and places it in the cell (C8). (Page 7) 3. Copy the formula down from C8 through to cell C Write a formula in cell E8 that takes text from the middle of the string in cell A8, starting at the 4 th character, and pulling 5 characters, and then places it in the cell (E8). (Page 7) 5. In cell C8, edit the formula so that it inserts the word Food in the cell if the first 3 letters in cell A8 are FOD, and if not, it leaves the cell blank. (Page 8) 6. Now edit the same formula in cell C8 (using Nested IF statements) that also returns the words Paper Products in the cell, if the first 3 letters in cell A8 are PPD, or returns the word Condiment in the cell, if the first 3 letters in cell A8 are COD. (Page 8) 7. Copy the formula down from C8 through to cell C In cell E8, edit your formula so that it includes a Concatenate formula to include the year 2017 after the date in cell E8. (Page 9) 9. Copy the formula down from E8 through to cell E Go to the Q2 Sales sheet. 11. In cell B11 write an Array formula that gives us the Total Sales for Q2 by multiplying cells B4:B9 by C4:C9, in a SUM function. (Page 11) 12. Name the ranges E4:E9 as: Q2April, F4:F9 as: Q2May, and G4:G9 as: Q2June (Page 11) 13. Write a formula in cells E11, F11 and G11 using the Named Ranges, that totals the amounts in each of those columns (Qty by month sales). (Page 11) 14. View all formulas on the Q2 Sales sheet, rather than the values, to see what your new Named Range formulas look like. (Page 12) 15. Save your edits. Finished spreadsheets will look like diagrams 1.1, 1.2, and 1.3. Diagram Excel 2016 Advanced version MCS

14 Diagram 1.2 Diagram MCS Excel 2016 Advanced version

15

16 Lookups Section II Look Ups & Other Functions Lookups retrieve information based on its relationship to other information in a table. This is useful when the value of one argument depends on the value of another. For example: 1) a formula that allows you to see the description of a product by typing in its inventory code or 2) a formula that calculates an invoice total in which a customer s discount is dependent on the quantity purchased. Lookups let you find data in a selection of cells by entering a parameter. There are 2 types of lookup functions: HLOOKUP and VLOOKUP. Both of these accomplish the same function except for one searches the data based horizontally (by row) and the other vertically (by column). Examples of lookup formulas: =VLOOKUP(C11,$G$6:$H$9,2) =HLOOKUP(C13,$J$14:$M$15,2) Syntax behind the formula: =VLOOKUP(lookup_value, table_array, column or row index_number, Range_lookup) 1. Lookup_value identifies the cell you want the lookup to compare against the table (i.e., the cell address of the information for which you want to search). 2. Table_array range of cells you want to search within, for the information 3. Column_index_num or Row_index_num the column/row number of the selected columns/rows that has the value to return/calculate against. This does not represent the column/row header name but rather the counted number of the column/row in the selected group (table array). If there are 10 rows in the table array and the 10 th row has the data that you to extract, then enter 10. Or if you have selected two columns and the second column has the data you want to extract then enter Range this last part is optional and applies a Boolean value to the first part of the formula (lookup_value). For example, if you use False or 0, it will only search for an exact match to the lookup_value. Or if you use True, it will search for the first exact match or if none found, the largest value that is less than the Lookup_value (this is the default range). Note: There are different types of look ups like a Range lookup (noted below in the second Vlookup scenario), or an exact match lookup (noted below in the first Vlookup and Hlookup scenario- i.e., to find a match to a cell of data). 15 Excel 2016 Advanced version MCS

17 VLOOKUP At the Gourmet Hot Dog Shoppe, they often have an Inventory Number but forget which product it represents. Rather than having to look through the long list of products, to try and find it, they want to create a look up instead, that will allow them to type in the Inventory Number (in cell A5) and then display the corresponding product (in cell B5). We will use the Insert Function Wizard to step through this formula. 1. Go to the Products spreadsheet and click in cell B5 2. On the Formulas tab on the Ribbon, in the Function Library group, click on Lookup & Reference, then select Vlookup 3. Click in the Lookup_Value field, then click on cell A5 in the Products spreadsheet to insert the cell reference in the field (this is the cell that contains the value you want the formula to look for in the table) 4. Click in the Table_array field and then select cells A8:B25 in your spreadsheet (to indicate the cells in your table you want to look in for the various pieces of data) 5. In the Col_Index_num field, type a 2 (to indicate which of the selected columns counting from left to right has the data you returned in your results) 6. In the Range_lookup field, type False (meaning you are not looking for a range of data, you want the results to return the exact match) 7. Click OK 8. Enter one of the Inventory Numbers in cell A5, then press Enter 9. You should see the corresponding product description in cell B5 Note: The look up value always has to be listed in the first column or row of your table array, for it to work. For example, in the above, if the inventory number was not in column A, it would not work as the look up value for our formula MCS Excel 2016 Advanced version

18 HLOOKUP We are going to create an exact match lookup to find a value like we did in the product inventory lookup we created earlier. This time we will create a lookup that shows us the total unit sales per month when we type in that month. Because the data we want to have returned is in a row, we will use an HLOOKUP this time. 1. Go to the Q2 Sales sheet 2. Click in cell K16 and type the following formula: =HLOOKUP(K15,B22:G29,8,FALSE) where K15 is the cell we will use to type the month, the table that contains the info is in cells B22 through G29, and the row that contains the data we want it to return is the 8 th one out of the selected rows, and False to return only data that exactly matches the month parameter we type. 3. Click in cell K15 and type the word April then press Enter 4. Type May and press Enter and note how the data in cell K16 changes Lookup with a Range We now want to create a different type of lookup using a Range VLOOKUP. The Gourmet Hot Dog Shoppe offers discounts for large orders. Customers receive deeper discounts based on the amount of units they purchase. We want to create a VLOOKUP that refers to the discount schedule to calculate what discount each customer will receive. Because we are going to use a range lookup, the VLOOKUP will search for the largest value that is less than or equal to the lookup value and apply that one. Therefore if a customer orders a quantity that falls between 2 discount prices, they will receive the lower discount price. 1. Go to the Bulk Order Discounts sheet 2. Click in cell D6 and type the following formula: =VLOOKUP(C6,G6:H9,2) where C6 is the cell that the formula will reference to compare to the table, the table that contains the info is in cells G6 through H9, and the column that contains the data we want it to return is the second one out of the selected columns, we do not need to type the word TRUE at the end of the formula to indicate that it is a range lookup because that is the default range. 3. Click-and-drag to copy the formula all the way down to cell D11 4. Notice that you have incorrect numbers and #N/A errors in some of your cells because the table array portion of your formula is being updated when you copy your formula. In this case we need to add $ symbols to the table array reference in our formula to make it static. 5. Click the Undo button once, click on cell D6, then click in the formula bar and edit your formula to be: =VLOOKUP(C6,$G$6:$H$9,2) 17 Excel 2016 Advanced version MCS

19 6. Click-and-drag to copy the formula all the way down to cell D11 again. Tip: Rather than typing in the $ symbols when using a static cell reference in a formula, you can press F4 after typing the cell reference to automatically insert the $ symbols for you. Additional Functions Calculating Days of the Week The Gourmet Hot Dog Shoppe has a list of holidays that the store will be closed. However, they would like to know what day of the week each of those dates falls. We can create a simple text formula to display those days. Function details: TEXT(Value, Format_Text) 1. Go to the Store Schedule tab 2. In cell D11, write the following formula: =TEXT(C11,"dddd") The formula indicates to display text by looking at cell C11 and providing the day of the week that it represents. You must use quotes "" around the dddd to indicate that it is displaying text (not trying to reference a cell). 3. Using the fill handle, copy the formula down to cell D16 Tip: If you wanted to display the weekday in a shorter abbreviation such as Thu, then you would use only 3 d's such as "ddd" in the formula MCS Excel 2016 Advanced version

20 Calculating # of Weekdays From a Date You can calculate the number of days between 2 dates by subtracting one date from the other. However, to determine the number of weekdays from any given date, you can use the NETWORKDAYS function, which calculates the number of days between 2 dates, excluding weekends. The Gourmet Hot Dog Shoppe wants to know how many days, and then weekdays,they have left until their big annual sale. 1. In cell C6, write the following formula to calculate total days between the 2 dates: =C5-C4 2. If your results displayed in a date format (rather than number), on the Home tab on the Ribbon, in the Number group, click on the drop-down to change Date to General. This will format the cell to display a number rather than the date. 3. In cell C7, write the following formula: =NETWORKDAYS(C4,C5) 4. Press Enter Note: When you are writing the formula for the total number of days, you are subtracting the lesser date from the later (larger) date (C5-C4). However, when you use the NETWORKDAYS function, you reference the earlier date first (C4,C5). Calculating # of Months Between 2 Dates If you want to calculate the amount of time between 2 dates, in increments of years, months, or days, you can use the DATEDIF function. We will calculate the number of months between now and the big annual sale. DATEDIF(Value, Value, Format) 1. In cell C8, write the following formula: =DATEDIF(C4,C5,"m") 2. Press Enter The "m" indicates to display the results in months, but you can also use "y" to display years or "d" to display days. 19 Excel 2016 Advanced version MCS

21 SUMIF Function The Gourmet Hot Dog show tracks its monthly internet and phone orders. They like to see what portion of their sales goes to their Denver customers, Phoenix customers and New Mexico. So they want to calculate the totals for those 3 categories by using a SUMIF function. Function Syntax details: SUMIF (range, criteria, sum_range) 1. Go to the Customer Orders spreadsheet 2. In cell G4, write the formula: =SUMIF(C4:C28,"=Denver",D4:D28) The first range of cells are the cells to test the criteria against (to locate the word "Denver" in), and the second range of cells are the cells to sum if the criteria is met. 3. In cell G5, write the formula: =SUMIF(C4:C28,"=Phoenix",D4:D28) 4. Format both G4 and G5 so they display in $ if not already 2016 MCS Excel 2016 Advanced version

22 Review 1. Go to the Future Products sheet 2. Create a lookup formula in cell B5 that displays Product Descriptions by entering the Inventory Number in cell A5. You will need to use a Vlookup function that looks at the value in cell A5 (which will contain the Inventory Number) and looks in the Table Array A8:B13, and displays the results from the Description column note, you are looking for an exact match, not a Range. (Page 16 ) 3. Enter the Inventory Number: PPD in cell A5 to test the lookup (it should display Souvenir Cups in cell B5, if correct. 4. Create a VLOOKUP on the Bulk Orders Discount sheet that calculates all of the bulk order discounts for the Nuts & Bolts Company Lunch order (in cells D18 D23), based on the Discount Schedule (cells G6:H9). Finished table should look like Diagram 1.4 below. (Page 17) 5. On the Customer Orders spreadsheet, in cell G6, use a SUMIF function to write a formula that adds the amounts in column D - if it says "New Mexico" in the corresponding cells in column C. Final Totals should look like diagram 1.6 below. (page 20) 6. Save your edits. Finished spreadsheets should look like diagrams 1.4, 1.5 & 1.6. Diagram 1.4 Diagram 1.5 Diagram Excel 2016 Advanced version MCS

23 7400 E. Orchard Road, Suite 1450 N Greenwood Village, Colorado Ph:

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

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

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

FSFOA EXCEL INSTRUCTIONS. Tips and Shortcuts

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

More information

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

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

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

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

My Top 5 Formulas OutofhoursAdmin

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

More information

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

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

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

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

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

More information

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

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

ADVANCED EXCEL: LOOKUP FUNCTIONS

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

More information

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

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

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

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

3 Excel Tips for Marketing Efficiency

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

More information

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

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

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

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

MS EXCEL: TABLES, FORMATS, FUNCTIONS AND MACROS

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

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel in Excel Although calculations are one of the main uses for spreadsheets, Excel can do most of the hard work for you by using a formula. When you enter a formula in to a spreadsheet

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 & Business Math Video/Class Project #39 Create Invoices in Excel with Data Validation Drop-down, VLOOKUP & IF Functions

Excel & Business Math Video/Class Project #39 Create Invoices in Excel with Data Validation Drop-down, VLOOKUP & IF Functions Topics Excel & Business Math Video/Class Project #39 Create Invoices in Excel with Data Validation Drop-down, VLOOKUP & IF Functions 1) Format Invoice... 1 2) Insert Picture... 2 3) Calculate Wholesale

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

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

Excel: Tips and Tricks Speaker: Marlene Groh, CCE, ICCE Date: June 13, 2018 Time: 2:00 to 3:00 & 3:30 to 4:30 Session Number: & 27097

Excel: Tips and Tricks Speaker: Marlene Groh, CCE, ICCE Date: June 13, 2018 Time: 2:00 to 3:00 & 3:30 to 4:30 Session Number: & 27097 Excel: Tips and Tricks Speaker: Marlene Groh, CCE, ICCE Date: June 13, 2018 Time: 2:00 to 3:00 & 3:30 to 4:30 Session Number: 27083 & 27097 Recording and Using Macros: Macros can be used to record steps

More information

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

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

More information

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

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

Excel Intermediate

Excel Intermediate Excel 2010 - Intermediate (103-124) Advanced Functions Quick Links Range Names Pages EX376 EX379 EX423 EX435 Data Validation Pages EX438 EX444 VLOOKUP Pages EX387 EX394 IF Pages EX151 EX155 EX367 EX376

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

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

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

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

Functions in Excel. Structure of a function: Basic Mathematical Functions. Arithmetic operators: Comparison Operators:

Functions in Excel. Structure of a function: Basic Mathematical Functions. Arithmetic operators: Comparison Operators: Page1 Functions in Excel Formulas (functions) are equations that perform calculations on values in your spreadsheet. A formula always starts with an equal sign (=). Example: =5+2*7 This formula multiples

More information

Vlookup and Sumif Formulas to assist summarizing queried data

Vlookup and Sumif Formulas to assist summarizing queried data Vlookup and Sumif Formulas to assist summarizing queried data When accessing data from Foundation through the MS Query tool, at times it is necessary to join multiple tables together to retrieve the required

More information

Excel 2016: Formulas & Functions

Excel 2016: Formulas & Functions Excel 2016: Formulas & Functions Rylander Consulting www.rylanderconsulting.com sandy@rylanderconsulting.com 425.445.0064 ii Excel 2016: Formulas & Functions Excel 2016: Formulas & Functions i Table of

More information

Excel 2016 Functions

Excel 2016 Functions Excel 2016 Functions A function is a preset formula in Excel that is intended to carry out a specific calculations, logical tests, formats, etc. in the cell in which it is located. All functions begin

More information

Excel 2016: Basics 2 Math and Functions

Excel 2016: Basics 2 Math and Functions Excel 2016: Basics 2 Math and Functions training@health.ufl.edu Excel 2016: Basics 2 Math and Functions 2.0 hours In this workshop we will work with patterns of text, numbers and dates; build simple equations;

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

Downloading other workbooks All our workbooks can be downloaded from:

Downloading other workbooks All our workbooks can be downloaded from: Introduction This workbook accompanies the computer skills training workshop. The trainer will demonstrate each skill and refer you to the relevant page at the appropriate time. This workbook can also

More information

USING FORMULAS AND FUNCTIONS...

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

More information

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

Section 6. Functions

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

More information

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

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

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

More information

Using Microsoft Excel

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

More information

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

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

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

Tips & Tricks: MS Excel

Tips & Tricks: MS Excel Tips & Tricks: MS Excel 080501.2319 Table of Contents Navigation and References... 3 Layout... 3 Working with Numbers... 5 Power Features... 7 From ACS to Excel and Back... 8 Teacher Notes: Test examples

More information

Department of Language and Linguistics LG400. Computer Induction for Linguists. Class Handouts. Week 7. Working with data on MS Excel.

Department of Language and Linguistics LG400. Computer Induction for Linguists. Class Handouts. Week 7. Working with data on MS Excel. Department of Language and Linguistics LG400 Computer Induction for Linguists Class Handouts Week 7 Working with data on MS Excel by Mutsumi Ogawa mogawa@essex.ac.uk Session description Do you work with

More information

Spreadsheet Functions

Spreadsheet Functions Class Description This is an introduction to the use of functions in spreadsheets, with a focus on Microsoft Excel and Google Drive Spreadsheets. The main topics are arithmetic calculations and order of

More information

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

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

More information

2015 Vanderbilt University

2015 Vanderbilt University Excel Supplement 2015 Vanderbilt University Introduction This guide describes how to perform some basic data manipulation tasks in Microsoft Excel. Excel is spreadsheet software that is used to store information

More information

How to use the Vlookup function in Excel

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

More information

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

1.a) Go to it should be accessible in all browsers

1.a) Go to  it should be accessible in all browsers ECO 445: International Trade Professor Jack Rossbach Instructions on doing the Least Traded Product Exercise with Excel Step 1 Download Data from Comtrade [This step is done for you] 1.a) Go to http://comtrade.un.org/db/dqquickquery.aspx

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

VLOOKUP Function Purpose (Mac Guide)

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

More information

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

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

More information

Excel 2013 Intermediate

Excel 2013 Intermediate Excel 2013 Intermediate Quick Access Toolbar... 1 Customizing Excel... 2 Keyboard Shortcuts... 2 Navigating the Spreadsheet... 2 Status Bar... 3 Worksheets... 3 Group Column/Row Adjusments... 4 Hiding

More information

Excel. Spreadsheet functions

Excel. Spreadsheet functions Excel Spreadsheet functions Objectives Week 1 By the end of this session you will be able to :- Move around workbooks and worksheets Insert and delete rows and columns Calculate with the Auto Sum function

More information

Printing Monthly Eligible List for Providers

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

More information

2. Formulas and Series

2. Formulas and Series 55 2. Formulas and Series In this chapter you will learn how to automatically complete a series of numbers, dates, or other items and work with more complex formulas in Excel. You will notice that creating

More information

INFORMATION SHEET 24002/1: AN EXCEL PRIMER

INFORMATION SHEET 24002/1: AN EXCEL PRIMER INFORMATION SHEET 24002/1: AN EXCEL PRIMER How to use this document This guide to the basics of Microsoft Excel is intended for those people who use the program, but need or wish to know more than the

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 Level 3 - Advanced

Excel Level 3 - Advanced Excel Level 3 - Advanced Introduction This document covers some of the more advanced features of Excel. Spreadsheets can be used in such a multiplicity of ways that it cannot hope to even touch on all

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

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

Intro to Excel. To start a new workbook, click on the Blank workbook icon in the middle of the screen.

Intro to Excel. To start a new workbook, click on the Blank workbook icon in the middle of the screen. Excel is a spreadsheet application that allows for the storing, organizing and manipulation of data that is entered into it. Excel has variety of built in tools that allow users to perform both simple

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

Instructions on Adding Zeros to the Comtrade Data

Instructions on Adding Zeros to the Comtrade Data Instructions on Adding Zeros to the Comtrade Data Required: An excel spreadshheet with the commodity codes for all products you want included. In this exercise we will want all 4-digit SITC Revision 2

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

Advanced Excel for EMIS Coordinators

Advanced Excel for EMIS Coordinators Advanced Excel for EMIS Coordinators Helen Mills helenmills@metasolutions.net 2015 Metropolitan Educational Technology Association Outline Macros Conditional Formatting Text to Columns Pivot Tables V-Lookup

More information

Open you WordPad/NotePad File in Excel. How to Move Text to Columns (You can see all data in Column A)

Open you WordPad/NotePad File in Excel. How to Move Text to Columns (You can see all data in Column A) NMASO 9/14/17 EXCEL PRESENTAITON NOTES Open you WordPad/NotePad File in Excel. How to Move Text to Columns (You can see all data in Column A) Highlight Column A (left click at the top of column A) and

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 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: Linking sheets and summary sheets (Mac OS)

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

More information

Introduction to Excel

Introduction to Excel Office Button, Tabs and Ribbons Office Button The File menu selection located in the upper left corner in previous versions of Excel has been replaced with the Office Button in Excel 2007. Clicking on

More information

2. In Video #6, we used Power Query to append multiple Text Files into a single Proper Data Set:

2. In Video #6, we used Power Query to append multiple Text Files into a single Proper Data Set: Data Analysis & Business Intelligence Made Easy with Excel Power Tools Excel Data Analysis Basics = E-DAB Notes for Video: E-DAB 07: Excel Data Analysis & BI Basics: Data Modeling: Excel Formulas, Power

More information

Excel 2016 Basics for Windows

Excel 2016 Basics for Windows Excel 2016 Basics for Windows Excel 2016 Basics for Windows Training Objective To learn the tools and features to get started using Excel 2016 more efficiently and effectively. What you can expect to learn

More information

Application of Skills: Microsoft Excel 2013 Tutorial

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

More information

Chapter 3: The IF Function and Table Lookup

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

More information

VLOOKUP() takes three mandatory parameters and one default/optional parameter:

VLOOKUP() takes three mandatory parameters and one default/optional parameter: Excel Lesson: Table Lookup Functions Topics Covered: VLookup() [Look across] HLookup() [Look down] Lookup() [Look almost anywhere] Related Functions (a list) We will not be examining all forms of these

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

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

Formulas and Functions

Formulas and Functions Conventions used in this document: Keyboard keys that must be pressed will be shown as Enter or Ctrl. Controls to be activated with the mouse will be shown as Start button > Settings > System > About.

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

Cell to Cell mouse arrow Type Tab Enter Scroll Bars Page Up Page Down Crtl + Home Crtl + End Value Label Formula Note:

Cell to Cell mouse arrow Type Tab Enter Scroll Bars Page Up Page Down Crtl + Home Crtl + End Value Label Formula Note: 1 of 1 NOTE: IT IS RECOMMENDED THAT YOU READ THE ACCOMPANYING DOCUMENT CALLED INTRO TO EXCEL LAYOUT 2007 TO FULLY GRASP THE BASICS OF EXCEL Introduction A spreadsheet application allows you to enter data

More information