Comparing and linking tables of data using VLOOKUP

Size: px
Start display at page:

Download "Comparing and linking tables of data using VLOOKUP"

Transcription

1 [Type here] Comparing and linking tables of data using VLOOKUP This document looks at how you can minimise duplication in your Excel data by sharing data between worksheets. Instead of copying and pasting data into a new worksheet for analysis, you can use cell referencing and functions to pull data from other Excel sources Videos of using VLOOKUP are available to view on our website Last updated By Faye Brockwell 20 th November 2017 This document is held online on our website:

2 University of Brighton Information Services Contents VLOOKUP videos on our website... 2 VLOOKUP Functions... 3 Note on holding data in Excel... 3 Steps for using VLOOKUP... 4 Prepare your data table... 4 Sort the master data table... 4 Name the master data table... 4 Build the VLOOKUP function... 5 To build the VLOOKUP function... 6 Copy the VLOOKUP to the rest of the worksheet... 7 Excercises... 8 Solutions...12 VLOOKUP videos on our website We have put together a Lynda.com playlist with videos showing how to build VLOOKUPS. For links to the playlist, visit You will also find examples of using VLOOKUP to populate CAMS assessment sheets on the following pages of our website: Page 2 Last Updated Faye Brockwell

3 VLOOKUP Functions Comparing and linking tables of data using VLOOKUP VLOOKUP functions are used to pull data into a cell from a master data table. Some examples of where this can be used: On a sheet recording interactions with a student, automatically populate a student s name and course details when the student number is typed in. On a sheet listing student marks, automatically populate the grade and check digit when the mark is typed in. On a list of employees, automatically populate the tax rate based on salary. This is especially useful where several spreadsheets use the same data. You can have one sheet holding that data and then allow the other sheets to reference that information using the VLOOKUP function. This allows you to maintain data centrally. Any updates will automatically update the other sheets. For example, the table above on the left is used to record interactions with a student. The student number is recorded each time they have a meeting with a careers adviser. The table on the right holds student data. Column A holds the student numbers. If we want to know the school of a student listed in the table on the left, we use the student number to find the correct row in the master data table on the right and from there we can find the information we are looking for. For example, in row 5 in the table on the left we need to find the details for student number We find student number in the table on the right and can see that his school is Arts & Media. This is exactly what an Excel VLOOKUP does (only faster!) Note on holding data in Excel VLOOKUP functions enable you use Excel as a simple relational database. If you think you want to do this, especially if you plan to hold student or staff personal data, please talk to the Service Desk who can advise you whether the data you are working with can be managed within one of our centrally managed business systems (e.g. SITS/CAMS). Page 3

4 University of Brighton Information Services Steps for using VLOOKUP 1 Prepare your data table o o Sort the data table Name the data table 2 Build the VLOOKUP function in the first row 3 Copy the VLOOKUP to the rest of the worksheet Prepare your data table Before you can use a VLOOKUP function, you must first prepare your master data table. Sort the master data table The master data table must have unique entries in the first column and the table must be sorted on the first column in ascending order. To sort the table: click in the first column of the data table On the Home tab, click on the Sort & Filter icon Choose Sort A to Z Name the master data table Assigning a name to the master data table makes it easier to build the VLOOKUP function as you can use the name instead of specifying a range of cells. To name the table: Select all of the cells in the data table (you can use your mouse to do this or click anywhere in the table and press CTRL+A on a PC keyboard, +A on a Mac keyboard). Type a name for the data table in the Names box just above the worksheet and press ENTER. Spaces are not allowed in Names; use the underscore if you want to use more than one word. Tip: You can use the Name Manager on the Formulas tab to edit a named area on a worksheet (e.g. edit the cell range, delete a name or rename a named area). Page 4 Last Updated Faye Brockwell

5 Build the VLOOKUP function Comparing and linking tables of data using VLOOKUP The VLOOKUP function requires 4 pieces of information (arguments): =VLOOKUP(lookup value, table array, col_index_num, range_lookup) Lookup_value Table_array What from this sheet do you want to find on the other sheet? i.e. the cell reference of the cell containing the item of data in this row on your worksheet that can be used to find the correct entry in the master data table Where to look for it i.e. the name or the absolute cell references of the data range of the master data table where you will find what you re looking for e.g. C2 e.g. student_table or $A$1:$E$150 Col_index_num Range_lookup Which column in the other table contains the data you are looking for i.e. the column in your master data table (counting from the left) containing the answer to your question What to do if there is no exact match i.e. tell you if no exact match has been found or work with the nearest possible match? e.g. 5 e.g. FALSE or TRUE So, the VLOOKUP in cell D5 in the table above left might read: =VLOOKUP(C5,student_table,5,FALSE) where student_table is the name of the table on the right. See the next page for step-by-step instructions for building the VLOOKUP function. Page 5

6 University of Brighton Information Services To build the VLOOKUP function 1 Click in the cell where you want the answer to the VLOOKUP to appear e.g. in our example on the right, click in cell D5 as the VLOOKUP will be used to find the school for student Type =VLOOKUP( 3 Click on the Build function icon to open the Function Builder dialogue box. 4 Click in the Lookup_value field and then, on your worksheet, click on the cell in that row containing the item of data on your worksheet that can be used to find the correct entry on the master data table e.g. if we were building a VLOOKUP function in cell D5 in the example above, we would click on the cell C5 to specify that the student number should be used to find the entry we re looking for in our data table. This is because student number is the piece of data that both tables have in common. 5 Click in the table_array field and type the name of the data table the was created earlier (see Name the master data table) If you do not name the table, use the cell references of the range of cells containing your data table. Use dollar signs to make these references absolute (eg $A$1:$E$150). On a Windows computer, pressing the F4 key immediately after selecting the cell range will put the dollar signs in for you). 6 Click in the Col_index_num field and type the number of the column, when counting from the left of the table, containing the answer to your VLOOKUP. E.g. in our example above, if we want to find the school for a particular student, the school column is the fifth column when counting left to right. So we type 5 in the Col_index_num of our VLOOKUP. Note: never use the column letters in a VLOOKUP. 7 Click in the Range_lookup field and type: FALSE TRUE Look for exact matches only. E.g. if your student number doesn t exist, the result of the vlookup will show as #N/A To return the closest match (next lowest value) and use that to return an answer. This option is only really used when working with ranges in the master data table. E.g. tax scales Note: unless you are working with financial data and number ranges, most VLOOKUPs use FALSE. Just imagine if you were pulling student data and you pulled the details of the nearest closest student? Chaos! 8 Click OK. Page 6 Last Updated Faye Brockwell

7 Comparing and linking tables of data using VLOOKUP Copy the VLOOKUP to the rest of the worksheet Use autofill to copy the VLOOKUP formula down the column 1 Select the cell(s) you want to copy. The fill handle will appear at the bottom right of the selection. 2 Point at the fill handle until it becomes a cross. 3 Click and drag to copy the data OR Double-click to autofill all rows. 4 Double click on one of the newly-populated cells within the column to check that the copied cell references are correct. Page 7

8 University of Brighton Information Services Excercises Exercise A Fill in the gaps in the table above using one of the tables on the next page. Day Time Student number School 01/11/ : /11/ : /11/ : /11/ : /11/ : /11/ : /11/ : /11/ : /11/ : /11/ : /11/ : Page 8 Last Updated Faye Brockwell

9 Comparing and linking tables of data using VLOOKUP Student number First name Surname DOB School Faye Brockwell 11/08/1976 Education Jill Shacklock 05/09/1971 Arts & Media Brian McCarthy 11/11/1991 Nursing & Midwifery Chris Searle 04/06/1990 Arts & Media John Roberts 15/02/1989 Architecture & Design Jane Dawes 08/07/1990 Engineering Paul Hill 01/02/1991 CEM Selwyn Percival 22/05/1989 Engineering Adam Collett 26/09/1990 SASS Dan Burgess 28/08/1990 Business School Ben Wheelan 15/03/1987 Arts & Media Pat Brown 12/12/1989 CEM Ta King 07/10/1986 Education Student number First name Surname DOB School Faye Brockwell 11/08/1976 Education Selwyn Percival 22/05/1989 Engineering Ben Wheelan 15/03/1987 Arts & Media Pat Brown 12/12/1989 CEM Jane Dawes 08/07/1990 Engineering John Roberts 15/02/1989 Architecture & Design Adam Collett 26/09/1990 SASS Brian McCarthy 11/11/1991 Nursing & Midwifery Jill Shacklock 05/09/1971 Arts & Media Dan Burgess 28/08/1990 Business School Chris Searle 04/06/1990 Arts & Media Ta King 07/10/1986 Education Paul Hill 01/02/1991 CEM Page 9

10 University of Brighton Information Services 1 Which table did you use? Why? 2 Were you able to complete all the rows in the table? Exercise B 1 Open exercise file Student Services Example.xlsx The Interactions worksheet lists a Careers Adviser s interactions with students. The Students tab is a list of students by student number. 2 Prepare the data table on the Students worksheet to be used in a VLOOKUP. 3 Create a VLOOKUP in cell D5 on the Interactions worksheet to pull the school for that student in from the data table on the Students worksheet. 4 Copy the VLOOKUP down column D on the Interactions worksheet to populate the school for each row. As this table is not going to be uploaded into another system, there is no need to strip the VLOOKUP formulae in this exercise. Exercise C 1 Open exercise file Marks sheet exercise.xlsx The Marks worksheet lists student marks by module. The Grades & Check Digits tab is a table of grades and check digits for each mark. Note: The table on the Grades & Check Digits worksheet is an example of a marks sheet using one mark scheme. Do not use this table for real student marks. To obtain a similar table for your marks scheme, please contact CAMS support. 2 Prepare the data table on the Grades & Check Digits worksheet to be used in a VLOOKUP. 3 Create a VLOOKUP in cell K2 on the Marks worksheet to pull the grade for that student s mark in from the data table on the Grades & Check Digits worksheet. 4 Create a VLOOKUP in cell L2 on the Marks worksheet to pull the check digit for that student s mark in from the data table on the Grades & Check Digits worksheet. 5 Copy the VLOOKUP down columns K and L on the Marks worksheet to populate the grade and check digit for each row. Page 10 Last Updated Faye Brockwell

11 Comparing and linking tables of data using VLOOKUP Exercise D 1 Open exercise file Finance example using ranges.xlsx The Payroll worksheet lists staff and their pay scales. The Payroll Tables tab contains two tables: The hourly pay rate by pay scale The rate of income tax by salary 2 Prepare the data tables on the Payroll Tables worksheet to be used in a VLOOKUP. 3 Create a VLOOKUP in cell D5 on the Payroll worksheet to pull the hourly rate for that person s pay scale in from the data table on the Payroll Tables worksheet. 4 Copy the VLOOKUP down column D on the Payroll worksheet to populate the hourly rate for each row. 5 Create a VLOOKUP in cell G5 on the Payroll worksheet to pull the tax rate for that person in from the data table on the Payroll Tables worksheet. 6 Copy the VLOOKUP down column G on the Payroll worksheet to populate the tax rate for each row. Page 11

12 University of Brighton Information Services Solutions Exercise A Solution Most people would choose the bottom of the 2 data tables in the exercise as it is sorted by student number, thus making it easier to read. No match can be found for student number Day Time Student number School 01/11/ : Arts & Media 01/11/ : Engineering 01/11/ : Education 01/11/ : No match in the table 01/11/ : Arts & Media 02/11/ : Nursing & Midwifery 02/11/ : Education 02/11/ : Arts & Media 03/11/ : Education 04/11/ : Arts & Media 05/11/ : Arts & Media Exercise B Solution 1 Open exercise file Student Services Example.xlsx 2 Click on the Students worksheet 3 Sort the data table: Click on any cell containing text in column A. Click on the Home tab, click on Sort & Filter and choose Sort A to Z. 4 Name the data table: Click anywhere in the table of data (a cell containing text) Press CTRL and A on the keyboard (or the Apple key and A on a Mac keyboard) Type a name for the table (e.g. student_table) in the Names Box Press Enter Page 12 Last Updated Faye Brockwell

13 Comparing and linking tables of data using VLOOKUP 5 Click on cell D5 on the Interactions tab 6 Type =VLOOKUP( 7 Click on the Build function icon 8 Click in the Lookup_value field and then click on cell C5 9 Click in the Table_array field and type the name of your data table (e.g. student_table) 10 Click in the Col_index_num field and type Click in the Range_lookup field and type FALSE and press OK 12 Use the autofill technique to copy the formula down the column (see page 5) Exercise C Solution 1 Open exercise file Marks sheet exercise.xlsx 2 Name the table on the Grades & Check Digits worksheet (the table is already sorted on column A) e.g. marks_table 3 Use the autofill technique to copy the formula down the column (see page 5) 4 Select columns K and L 5 On the Home tab, click on 6 On the Home tab, click on the drop-down arrow below the Paste icon Page 13

14 University of Brighton Information Services 7 Click on Paste Values icon. 8 Double click on one of the cells in column K or L to check that the VLOOKUP function has been removed. Exercise D Solution 1 Open exercise file Finance example using ranges.xlsx 2 Name the Hourly Rate table (e.g. hourly_rate_table) 3 Name the Tax table (e.g. tax_table) 4 Use the autofill technique to copy the formula down the column (see page 5) 5 Use the autofill technique to copy the formula down the column (see page 5) Page 14 Last Updated Faye Brockwell

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

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

Microsoft Excel 2007

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

More information

Excel 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

Recording assessment in SITS using Excel and Turnitin

Recording assessment in SITS using Excel and Turnitin Recording assessment in SITS using Excel and Turnitin Using Excel functions to speed up recording assessments in SITS This document looks at how Excel can be used to semiautomate the process of recording

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

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

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

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

NUMERICAL COMPUTING For Finance Using Excel. Interpolation

NUMERICAL COMPUTING For Finance Using Excel. Interpolation NUMERICAL COMPUTING For Finance Using Excel Interpolation Outline 1 Excel Look-up Functions LOOKUP HLOOKUP VLOOKUP INDEX MATCH 2 Interpolation Linear interpolation (Cubic splines) Excel Look-up Functions

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

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

Excel Conditional Formatting (Mac)

Excel Conditional Formatting (Mac) [Type here] Excel Conditional Formatting (Mac) Using colour to make data analysis easier Excel conditional formatting automatically formats cells in your worksheet if specified criteria are met, giving

More information

Safari ODBC on Microsoft 2010

Safari ODBC on Microsoft 2010 Safari ODBC on Microsoft 2010 Creating an Excel spreadsheet using Safari ODBC 1. Click Data/From Other Sources/From Microsoft Query 2. Select your data source and click OK 3. Enter your Reflections username

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 Formulas and Functions in Microsoft Excel

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

More information

Excel 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

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

CMPF124 Microsoft Excel Tutorial

CMPF124 Microsoft Excel Tutorial Lab 5: Microsoft Excel Tutorial Excel Worksheet Microsoft Excel works as account ledger. An Excel Workbook (1) could have multiple Worksheets (2). A cell in Excel is referred by its Column and Row naming

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

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 & Business Math Video/Class Project #33 VLOOKUP Function for Incentive Pay: Commissions and Piecework

Excel & Business Math Video/Class Project #33 VLOOKUP Function for Incentive Pay: Commissions and Piecework Topics Excel & Business Math Video/Class Project #33 VLOOKUP Function for Incentive Pay: Commissions and Piecework 1) Incentive Pay... 2 2) Straight Piecework Example... 3 3) Variable Piecework Example

More information

Programs for American Fidelity WorxTime

Programs for American Fidelity WorxTime Programs for American Fidelity WorxTime There are 2 programs that can be run to create the Employee Upload File: W2WAGE and WRXTM_EMP. These programs are located on the USPS_LCL menu or the command name

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

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

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

EMIS - Excel Reference Guide

EMIS - Excel Reference Guide EMIS - Excel Reference Guide Create Source Data Files Create a Source Data File from your Student Software program. Current Year (valid as of the day pulled) Previous Year (used when reviewing data that

More information

Formulas and Functions

Formulas and Functions Formulas and Functions Excel's Golden Rule (Dan Bricklin and Bob Frankston) Excel's Golden Rule: If formula input data can change, put it in cell and refer to it with cell references. If data will not

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

UPDATING E-AUTOMATE VENDOR ITEM NUMBERS WITH NEW SN REFERENCE NUMBERS

UPDATING E-AUTOMATE VENDOR ITEM NUMBERS WITH NEW SN REFERENCE NUMBERS UPDATING E-AUTOMATE VENDOR ITEM NUMBERS WITH NEW SN REFERENCE NUMBERS NOTES: If you only carry/purchase the items that are being migrated (CTG), please see options/steps defined in Scenario #1. o All options

More information

Excel as a Tool to Troubleshoot SIS Data for EMIS Reporting

Excel as a Tool to Troubleshoot SIS Data for EMIS Reporting Excel as a Tool to Troubleshoot SIS Data for EMIS Reporting Overview Basic Excel techniques can be used to analyze EMIS data from Student Information Systems (SISs), from the Data Collector and on ODE

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

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

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

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

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

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

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

What is a VLOOKUP? Source

What is a VLOOKUP? Source VLOOKUP What is a VLOOKUP? VLOOKUP (short for vertical lookup ) is a function that is used to extract a particular value from a spreadsheet, given a unique identifier Let s say we wanted to know the weight

More information

Vlookup for dummies two sheets vlookup

Vlookup for dummies two sheets vlookup Vlookup for dummies two sheets Click on the 'fx' button above column B many people start by typing "=vlookup. " but you don't have to! Clicking the "fx" button is much quicker!. * IF AND-OR Combinations:

More information

Technology Applications for the Financial Aid Office. Wes Brothers Director of Financial Aid Ohio Christian University

Technology Applications for the Financial Aid Office. Wes Brothers Director of Financial Aid Ohio Christian University Technology Applications for the Financial Aid Office Wes Brothers Director of Financial Aid Ohio Christian University Ctrl F will change your life! Ctrl F Applications Find what you are looking for quickly

More information

More Excel as a Tool to Troubleshoot SIS Data for EMIS Reporting

More Excel as a Tool to Troubleshoot SIS Data for EMIS Reporting More Excel as a Tool to Troubleshoot SIS Data for EMIS Reporting Overview Basic Excel techniques can be used to analyze EMIS data From Student Information Systems (SISs) From the Data Collector On ODE

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

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

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

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

More information

Excel Foundation Quick Reference (Windows PC)

Excel Foundation Quick Reference (Windows PC) Excel Foundation Quick Reference (Windows PC) See https://staff.brighton.ac.uk/is/training/pages/excel/foundation.aspx for videos and exercises to accompany this quick reference card. Structure of a spreadsheet

More information

NHS e-referral Service

NHS e-referral Service Translating Extracts Published June 2017 Copyright 2016 Health and Social Care Information Centre. The Health and Social Care Information Centre is a non-departmental body created by statute, also known

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

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

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

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

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

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

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

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

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

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

Microsoft Excel Prepare Test Session File

Microsoft Excel Prepare Test Session File Microsoft Excel Prepare Test Session File Download Teacher/Course and Test Session Files Step 1. In Infinite Campus, download the Teacher/Course file and save to your computer. a) Login to Infinite Campus.

More information

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

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

More information

Top 15 Excel Tutorials

Top 15 Excel Tutorials Top 15 Excel Tutorials Follow us: TeachExcel.com Contents How to Input, Edit, and Manage Formulas and Functions in Excel... 2 How to Quickly Find Data Anywhere in Excel... 8 How to use the Vlookup Function

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

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

Tutorial 1: Using Excel to find unique values in a list

Tutorial 1: Using Excel to find unique values in a list Tutorial 1: Using Excel to find unique values in a list It is not uncommon to have a list of data that contains redundant values. Genes with multiple transcript isoforms is one example. If you are only

More information

Fiscal Learning Council Conference Managing Excel Tips Candi Ray, Mayor s Finance

Fiscal Learning Council Conference Managing Excel Tips Candi Ray, Mayor s Finance Fiscal Learning Council Conference 2016 Managing Excel Tips Candi Ray, Mayor s Finance The =SUBTOTAL( ) function: ignores includes hidden hidden valued values 101 1 AVERAGE 102 2 COUNT 103 3 COUNTA 104

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

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

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

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

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

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited EXCEL ADVANCED

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

More information

SPREADSHEET (Excel 2007)

SPREADSHEET (Excel 2007) SPREADSHEET (Excel 2007) 1 U N I T 0 4 BY I F T I K H A R H U S S A I N B A B U R Spreadsheet Microsoft Office Excel 2007 (or Excel) is a computer program used to enter, analyze, and present quantitative

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

MS Excel How To Use VLOOKUP In Microsoft Excel

MS Excel How To Use VLOOKUP In Microsoft Excel MS Excel 2013 How To Use VLOOKUP In Microsoft Excel Use VLOOKUP function to find data you don t know in a large Excel spreadsheet, by entering a data you know VLOOKUP function contains of arguments in

More information

1. Right-click the worksheet tab you want to rename. The worksheet menu appears. 2. Select Rename.

1. Right-click the worksheet tab you want to rename. The worksheet menu appears. 2. Select Rename. Excel 2010 Worksheet Basics Introduction Page 1 Every Excel workbook contains at least one or more worksheets. If you are working with a large amount of related data, you can use worksheets to help organize

More information

Commonly Used Excel Formulas

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

More information

Microsoft Excel Basics Ben Johnson

Microsoft Excel Basics Ben Johnson Microsoft Excel Basics Ben Johnson Topic...page # Basics...1 Workbook and worksheets...1 Sizing columns and rows...2 Auto Fill...2 Sort...2 Formatting Cells...3 Formulas...3 Percentage Button...4 Sum function...4

More information

Excel Format cells Number Percentage (.20 not 20) Special (Zip, Phone) Font

Excel Format cells Number Percentage (.20 not 20) Special (Zip, Phone) Font Excel 2013 Shortcuts My favorites: Ctrl+C copy (C=Copy) Ctrl+X cut (x is the shape of scissors) Ctrl+V paste (v is the shape of the tip of a glue bottle) Ctrl+A - or the corner of worksheet Ctrl+Home Goes

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

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

Unit 12. Electronic Spreadsheets - Microsoft Excel. Desired Outcomes

Unit 12. Electronic Spreadsheets - Microsoft Excel. Desired Outcomes Unit 12 Electronic Spreadsheets - Microsoft Excel Desired Outcomes Student understands Excel workbooks and worksheets Student can navigate in an Excel workbook and worksheet Student can use toolbars and

More information

Spreadsheet Microsoft Excel 2010

Spreadsheet Microsoft Excel 2010 Spreadsheet Microsoft Excel 2010 Prepared by: Teo Siew Copyright 2017 MAHSA UNIVERSITY Faculty of Business, Finance, and Hospitality Spreadsheet A type of application program which manipulates numerical

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

Activity: page 1/10 Introduction to Excel. Getting Started

Activity: page 1/10 Introduction to Excel. Getting Started Activity: page 1/10 Introduction to Excel Excel is a computer spreadsheet program. Spreadsheets are convenient to use for entering and analyzing data. Although Excel has many capabilities for analyzing

More information

MOVING AND COPYING DATA...

MOVING AND COPYING DATA... Overview NOTES... 2 OVERVIEW... 3 VIEW THE PROJECT... 5 USING FORMULAS... 6 BASIC EXCEL REVIEW... 6 ENTERING FORMULAS... 7 Typing formulas... 7 Clicking to insert cell references... 7 Using a simple cell

More information

Beginning Excel. Revised 4/19/16

Beginning Excel. Revised 4/19/16 Beginning Excel Objectives: The Learner will: Become familiar with terminology used in Microsoft Excel Create a simple workbook Write a simple formula Formatting Cells Adding Columns Borders Table of Contents:

More information

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

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

More information

Using Excel 2011 at Kennesaw State University

Using Excel 2011 at Kennesaw State University Using Excel 2011 at Kennesaw State University Getting Started Information Technology Services Outreach and Distance Learning Technologies Copyright 2011 - Information Technology Services Kennesaw State

More information

Excel Tips for Compensation Practitioners Weeks Data Validation and Protection

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

More information

Microsoft Excel 2007 Beginning The information below is devoted to Microsoft Excel and the basics of the program.

Microsoft Excel 2007 Beginning The information below is devoted to Microsoft Excel and the basics of the program. Microsoft Excel 2007 Beginning The information below is devoted to Microsoft Excel and the basics of the program. Starting Excel Option 1: Click the Start button on the taskbar, then Programs>Microsoft

More information

Excel 2010 Formulas Not Working In 2003 >>>CLICK HERE<<<

Excel 2010 Formulas Not Working In 2003 >>>CLICK HERE<<< Excel 2010 Formulas Not Working In 2003 Copying Correctly If you are using an earlier version (Excel 2003 or earlier), this tip may not work for you. AutoFill will override its normal determination (copy

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

Microsoft Excel. for Finance Majors. Microsoft Excel for Finance Majors

Microsoft Excel. for Finance Majors. Microsoft Excel for Finance Majors Microsoft Excel for Finance Majors 2007 Version: 12/21/2017 Contents Introduction... 3 Working with Tables... 3 Exercise... 10 Pivot Tables... 12 Exercise:... 17 Conditional Formatting... 18 Exercise:...

More information

How Commercial Off-the-Shelf (COTS) Business Intelligence (BI) Tools Can Improve Financial Management Analysis

How Commercial Off-the-Shelf (COTS) Business Intelligence (BI) Tools Can Improve Financial Management Analysis How Commercial Off-the-Shelf (COTS) Business Intelligence (BI) Tools Can Improve Financial Management Analysis Carolyn L. North, CPA, CGFM, CDFM/A, PMP R. Ross Hosse, CDFM Purpose of Business Intelligence

More information

WORKING WITH LOOKUP TABLES

WORKING WITH LOOKUP TABLES Excel Chapter 5 - Tables Name WORKING WITH LOOKUP TABLES 1. Open the file Communication Data from the class website. Add your name to the spreadsheet header. 2. Rename Sheet 1 Data. 3. Highlight the data

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

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

This lesson is part 5 of 5 in a series. You can go to Invoice, Part 1: Free Shipping if you'd like to start from the beginning.

This lesson is part 5 of 5 in a series. You can go to Invoice, Part 1: Free Shipping if you'd like to start from the beginning. Excel Formulas Invoice, Part 5: Data Validation "Oh, hey. Um we noticed an issue with that new VLOOKUP function you added for the shipping options. If we don't type the exact name of the shipping option,

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

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