Vlookup and Sumif Formulas to assist summarizing queried data

Size: px
Start display at page:

Download "Vlookup and Sumif Formulas to assist summarizing queried data"

Transcription

1 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 information. At times this is very easy, other instances are rather frustrating. The following demonstration shows examples of how data may be joined via formulas in Microsoft Excel. If we want to create a simple list of job records with their associated project managers, we would start by querying the JOBS table. From the Jobs table, we would pull the job_id, description and project_manager_id fields. Everything looks great so far, but I would also like to include the description of the project manager field in this list as well. Add the PROJECT_MANAGERS table to the query.

2 - MS Query makes some assumptions and creates joins between the two tables. You will notice that the MS Query tool joins the two tables based on a common field or fields. The company_no field will always be joined between existing tables. You will notice that one or more fields within a table will be highlighted. These fields are known as a key identifier. These are the fields that cannot be changed once entered in Foundation. Basically any maintenance ID (or number) once entered in Foundation is now known to all the other tables in the database by that key identifier. These key identifiers could potentially be referenced on hundreds of tables throughout the database, which is why once they are entered, they cannot be altered. Once the join is created, you must review your data for integrity.

3 This is the Query that contained ONLY the JOB table. Notice, there are MANY more jobs returned in this query as opposed to the query that contains two tables. On the right is the query with both tables present. Notice that Jobs are not on the list on the right.? The joins in the MS query tool are rather particular. By default they want to satisfy a simple condition. If there is a project_manager_no on the JOBS table, then match it up with the project_manager_no on the PROJECT_MANAGERS table. When there is no project_manager_no entered on the JOBS table, the query tool looks at the fields as a blank. Since there is no such animal as a blank project_manager_no, the link is not satisfied, and the record is dropped from the queried data. NOTE: There are some advanced programmatic / coding solutions to these issues, but for the use of simple queries, we offer these solutions. First, start by removing the project_managers table from the query. Single click on the table and press the delete key on your keyboard. You will notice that all of the data has returned. Return the data to Excel.

4 Access Sheet2 in the Excel workbook and start a new query. In this query, add the project_managers table. From this table, choose project_manager_id and description. Return this data to Excel Sheet2 The Vlookup function will allow us to join the information from these two sheets together.

5 VLOOKUP function in Excel. We have two worksheets with data. We have the JOB table information on Sheet1 and the PROJECT_MANAGERS information on Sheet2. We will use the VLOOKUP (vertical lookup) function in Excel to find the match between the value(s) on Sheet1 and Sheet2. Sheet 1 Sheet 2 When I find a value in Column C of Sheet1, I want to return the value from Column B in Sheet2 when the project_manager_id values are the same. The formula is written as follows: =VLOOKUP(C2,Sheet2!A:B,2,FALSE) The Vlookup function is broken down into 4 parts. 1. What Value do you want to find? (lookup_value) 2. Where do you want to look for the value? (table_array) 3. How many rows from the leftmost column in the table_array does the requested data reside? (col_index_num) 4. Do you want an exact match, or a close match (range_lookup)

6 These 4 Items are broken down as follows: The Lookup_value is the cell on the spreadsheet that you want to pull information from. Although the help dialog state that it must be a value from the leftmost column of a table, this is not true, you may create a vlookup anywhere in a spreadsheet. In this example, we are starting the lookup in column C. I like to refer to this as what are we looking FOR? The table_array is the selected columns from which to look for the associated value defined in the first step. In this example, our array is on Sheet2, Columns A:B. Even though we are only looking to an array with 2 columns, these arrays can be much larger. The Col_index_num is the number of columns from the first column in the array to locate the required data. In this case, the array is A:B. We are looking to return the data from column B. Column B is the SECOND column from column A, so we enter a 2 in the Col_index_num field. The Range_Lookup is the most illogical logical value Excel offers. To find an exact match between the fields on the two sheets, you will select false. To find the first, or closest match, enter true % of the time, you will want to enter false.

7 When the formula is written properly, you will see that Sheet1 has the associated Project Manager description pulled from the table on Sheet2. Everything looks great, except for the #N/A errors in the rows where employees have no project_manager_id identified. Excel 2007 has a nice formula to address any and all errors in calculated cells. This new formula is called =IfError If we append the original equation with the following: =IfError(VLOOKUP(C2,Sheet2!A:B,2,FALSE), ) This formula states that if there is an error with the specified formula, return (two sets of double quotes = blank). For calculated numbers, such as a #DIV/0 error, you may want to use a 0 in place of the. Resulting data:

8 Resulting data: Use the filters, and this is a nice list to show who is the PM on a particular project. (Use filters and criteria in the MS query to show Active jobs only). This theory may be applied with multiple fields within a worksheet. POLLING QUESTION #1

9 SUMIF statement The Sumif statement is loosely related to the Vlookup statement. The Vlookup statement has to be used when text based fields are involved. Vlookup may be used on numeric fields, but what if we need to return more than one value? Imagine we need to sum the numbers in a particular column if the criterion in an adjacent column is met. Here is an example. In columns D and E, we have a month and an associated $ amount for sales within that month. If we need to total the amounts from the array based on the month, we can use the Sumif statement. The sumif statement is comprised of 3 items: 1. What range of Data do want evaluated? (Range) 2. What / Where is the KEY you are looking for? (Criteria) 3. What / Where is the range of cells where the data resides that needs to be summed up? (sum_range)

10 The 3 items in the formula are broken down as follows: RANGE : define the range of cells that you want to look for a particular value defined by the. CRITERIA : The criteria in this formula is a cell reference. In some cases it can be a text or number string depending on your requirements. So far the Sumif statement is looking up and down column D for the value JAN. When it finds the value of JAN, it needs to SUM the values from SUM_RANGE : just as the help says. The sum range is the range of cells you wish to evaluate, or sum.

11 I have created a query that is a simple job list with the job number, job description and original contract amount. I will return this information to Sheet1 of my Excel Workbook. On Sheet2, I will create another query that will pull information from the Job_Chg table. This query will include the Job_id, the status and the total_income_adj fields.

12 Sheet1 Job_id, description, original contract Sheet2 job_id, status, total_income_adj The sumif equation to sum the values in Sheet2, column C, based on the values in Sheet2 column A that meet the same criteria as Sheet1 cell A2 is : =sumif(sheet2!a:a,sheet1!a2,sheet2!c:c) If you need a moment, read the above again and again, and again. It will eventually make sense. The nice thing about the Sumif equations is that there are no wrong results, no #N/A errors. (So we do not need to use the iferror formula to make our sheet look nice. The sumif formula only works with numeric values. We would not be able to use the sumif formula with the first example in this lesson (finding the project_manager description). POLLING QUESTION #2

13 EXTRA: Sumifs statement (available in Excel 2007 and newer ONLY). This will allow for multiple criteria within a Sumif statement. I have a single sheet with the job_id, description and original_contract amount pulled from the JOBS table. I want to link this table to the Job Cost Change order (job_chg) table to show change orders by status. Here is the query from the job_chg table, it includes the job_id, status and tot_income_adj fields.

14 We are going to use the sumifs statement to pull the information from the job_chg table and link it to the information from the jobs table. AND we are going to create separate columns for each of the available status of the change orders (A = Approved, P = Pending, I = Internal). Create new columns and heading for the three status of the change orders : If we speak the formula that belongs in cell D5, it would sound something like this: Sum the amounts from the Change Order sheet where the job_id equals the job_id in cell A5 and the status is A for approved. JOBS TAB CHANGE ORDER TAB $ 69, In this example, we would like to see the following values added : $ 12, $ 45, $ 12, for a total of $ 69,300.00

15 The first part of the SUMIFS statement is the SUM RANGE. In other words, where are you looking to find the values to SUM? The sum range in this example is on the job_chg table, including any values in Column C. The additional components of the sumifs equation define the criteria range and criteria to trigger the sum function. In this example, the first criteria range is any value in column A. Keep in mind that the criteria_range values should be ranges, not individual values.

16 The next component is the criteria for the previously defined criteria_range1 value. In this example, the criteria will be defined by the value in the individual cell from the JOBS tab. So far, we have stated that we want to sum the values in the job_chg sheet in column C, based on the range of items in column A from the job_chg sheet when the job_id matches the value in cell A5 from the jobs sheet. Confused yet? good, let s continue: The second criteria option (criteria_range2) will be set to look up the change order status. In this example, the change order status is located in column B of the job_chg worksheet. The final piece of the equation is to set the criteria2 for the designated criteria_range_2. In this case, we want to see any records that have a status of A. Note that the criteria2 field is not a cell reference, it is an absolute value (in this case A for approved change orders).

17 When we return the equation to excel, here are the results. Since the additional columns for the Pending and Internal change order statuses are very similar, the only change required in the equation is to change the status from A to P for pending or I for internal. You may copy the FORMULA from the Approved column to the additional columns and simply edit the formula to create the desired results. First, click on the cell which contains the formula you wish to copy. In the FORMULA BAR, highlight the entire formula. Right click on the highlighted data and select COPY. MAKE SURE YOU ARE COPYING FROM THE FORMULA TOOLBAR, not the individual cell!!!!

18 After you have selected COPY, click the CHECKBOX or press the enter key. This will verify the formula and save the cpied formula to the clipboard. Again, make sure you verify the formula before continuing, or you may overwrite the formula if you click on another cell. Click in the destination cell. In this example, the same row as the original formula, but one column to the right. Click on the Formula toolbar. Right Click on the empty formula toolbar and paste. This will paste the formula from the original cell.

19 You now have an editable formula that can be changed for the new criteria. We simply have to change the A to a P for the pending change orders. Change to P Do the same for the Third Column to sum the INTERNAL change orders. This time change the final criteria to I for internal

20 Sumifs are a very powerful method of pulling and sorting data that is returned from queries. You may define 256 individual criteria options within a single sumif statement. Below is a review of all of the formulas that were written for the previous example. The =sumifs formula may be used to sum values if multiple criteria are met. (A total of 127 criteria may be defined in a sumifs statement). This example shows that we want to separate by Job_id and by Status of A for approved, P for Pending and I for Internal Change Orders. Column D: =SUMIFS(Sheet2!C:C,Sheet2!A:A,Sheet1!A4,Sheet2!B:B,"A") Column E: =SUMIFS(Sheet2!C:C,Sheet2!A:A,Sheet1!A4,Sheet2!B:B,"P") Column F: =SUMIFS(Sheet2!C:C,Sheet2!A:A,Sheet1!A4,Sheet2!B:B,"I") POLLING QUESTION #3

21 Advanced Sumifs formula creation With some practice, you can copy the sumifs equations across multiple cells within columns by enabling constraints on the cell references and criteria. The formula in Cell G4 can be copied across to column H, I and J when the proper constraints are enabled. By default, Excel will sequence the cell references if you drag and drop the formulas to other cells within the spreadsheet. When editing cell references in the Formula toolbar, The F4 Key will lock the ranges and cell references. As the F4 key is pressed on certain cell references, it will cycle through the available constraint options. Double $ values typically mean maintain these values for the entire range. Single $ before a call reference will maintain either a column or row value. =SUMIFS('JOB COST'!$C:$C,'JOB COST'!$A:$A,JOBS!$A4,'JOB COST'!$B:$B,JOBS!G$2) If we drag the fomula referenced above, the sum range of column C:C will always remain intact, as will the criteria range1 of A:A. The Criteria1 value of JOBS!$A4 will maintian the column value of A due to the constraint ($) before the A, the row reference does not include the constraint, and therefore will sequence properly. The criteria2 value of JOBS!G$2 will constrain the row value of 2, but will sequence the column value if the formula is dragged to other columns.

22 Here is an example of all of the formulas after they have been dragged across the additional columns: Column G =SUMIFS('JOB COST'!$C:$C,'JOB COST'!$A:$A,JOBS!$A4,'JOB COST'!$B:$B,JOBS!G$2) Column H =SUMIFS('JOB COST'!$C:$C,'JOB COST'!$A:$A,JOBS!$A4,'JOB COST'!$B:$B,JOBS!H$2) Column I =SUMIFS('JOB COST'!$C:$C,'JOB COST'!$A:$A,JOBS!$A4,'JOB COST'!$B:$B,JOBS!I$2) Column J =SUMIFS('JOB COST'!$C:$C,'JOB COST'!$A:$A,JOBS!$A4,'JOB COST'!$B:$B,JOBS!J$2)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Timecard history can be queried for a number of valuable reports. Begin by accessing the his_timecard table in a query.

Timecard history can be queried for a number of valuable reports. Begin by accessing the his_timecard table in a query. Queries against Timecard History: Timecard history can be queried for a number of valuable reports. Begin by accessing the his_timecard table in a query. We will access the following fields from the his_timecard

More information

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

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

More information

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

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

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

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

More information

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

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

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

Streamlined Reporting with

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

More information

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

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

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

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

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

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

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

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

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

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 Reports: Formulas or PivotTables

Excel Reports: Formulas or PivotTables Excel Reports: Formulas or PivotTables TABLE OF CONTENTS 1. Cover Page 2. The Great... 3. Formula-based Reports with SUMIFS 4. Pivot Tables 5. Comparison The great...is a success of little things that

More information

Tutorial 8: Working with Advanced Functions. Microsoft Excel 2013 Enhanced

Tutorial 8: Working with Advanced Functions. Microsoft Excel 2013 Enhanced Tutorial 8: Working with Advanced Functions Microsoft Excel 2013 Enhanced Objectives Use the IF function Use the AND function Use the OR function Use structured references in formulas Nest the IF function

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

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

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

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 ADVANCED Linda Muchow

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

More information

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

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

Excel Formulas 2018 Cindy Kredo Page 1 of 23

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

More information

Advanced 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

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

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

BASIC EXCEL WORKSHOP 2017

BASIC EXCEL WORKSHOP 2017 BASIC EXCEL WORKSHOP 2017 Download the training materials at: www.nusbas.com/excel-2017 28 FEBRUARY 2017 NUS BUSINESS ANALYTICS SOCIETY (BAS) fb.com/nusbasociety nusbas.com WHAT WILL I BE LEARNING? 1.

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

Jump Right In! Essential Computer Skills Using Microsoft 2013 By Andrews, Dark, and West

Jump Right In! Essential Computer Skills Using Microsoft 2013 By Andrews, Dark, and West Jump Right In! Essential Computer Skills Using Microsoft 2013 By Andrews, Dark, and West Chapter 10 Managing Numbers and Text Using Excel 1 Objectives Examine the Excel window and tools Enter and format

More information

EXCEL INTERMEDIATE 2016

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

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 2010 Formulas Not Work In 2003 Copying Down Correctly

Excel 2010 Formulas Not Work In 2003 Copying Down Correctly Excel 2010 Formulas Not Work In 2003 Copying Down Correctly Invest a few minutes and learn how to correctly use relative and absolute cell How relative and absolute cell references work in conditional

More information

Moving and copying data

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

More information

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

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

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

Microsoft Excel Chapter 1. Creating a Worksheet and a Chart

Microsoft Excel Chapter 1. Creating a Worksheet and a Chart Microsoft Excel 2013 Chapter 1 Creating a Worksheet and a Chart Objectives Describe the Excel worksheet Enter text and numbers Use the Sum button to sum a range of cells Enter a simple function Copy the

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

How to Excel - Part 2

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

More information

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

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

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

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

Advanced Excel Charts : Tables : Pivots

Advanced Excel Charts : Tables : Pivots Advanced Excel Charts : Tables : Pivots Protecting Your Tables/Cells Protecting your cells/tables is a good idea if multiple people have access to your computer or if you want others to be able to look

More information

SBCUSD IT Training Program. MS Excel lll. VLOOKUPS, PivotTables, Macros, and More

SBCUSD IT Training Program. MS Excel lll. VLOOKUPS, PivotTables, Macros, and More SBCUSD IT Training Program MS Excel lll VLOOKUPS, PivotTables, Macros, and More Revised 10/25/2018 TABLE OF CONTENTS VLOOKUP...2 VLOOLUP...2 SUMIF...3 SUMIF...3 PivotTable...4 Create PivotTable...4 Build

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

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 Boot Camp PIONEER TRAINING, INC.

Excel Boot Camp PIONEER TRAINING, INC. Excel Boot Camp Dates and Times: Cost: $250 1/22, 2-4 PM 1/29, 2-4 PM 2/5, 2-4 PM 2/12, 2-4 PM Please register online or call our office. (413) 387-1040 This consists of four-part class is aimed at students

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

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

Getting Started with Excel

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

More information

Excel 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

Comparing and linking tables of data using VLOOKUP

Comparing and linking tables of data using VLOOKUP [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

More information

Today Function. Note: If you want to retrieve the date and time that the computer is set to, use the =NOW() function.

Today Function. Note: If you want to retrieve the date and time that the computer is set to, use the =NOW() function. Today Function The today function: =TODAY() It has no arguments, and returns the date that the computer is set to. It is volatile, so if you save it and reopen the file one month later the new, updated

More information

Extracting the last word of a string Extracting all but the first word of a string Extracting first names, middle names, and last names Counting the

Extracting the last word of a string Extracting all but the first word of a string Extracting first names, middle names, and last names Counting the Introducing Excel Understanding Workbooks and Worksheets Moving around a Worksheet Introducing the Ribbon Accessing the Ribbon by using your keyboard Using Shortcut Menus Customizing Your Quick Access

More information

Excel 2007: Functions and Forumlas Learning Guide

Excel 2007: Functions and Forumlas Learning Guide Excel 2007: Functions and Forumlas Learning Guide Functions and Formulas: An Overview Excel uses functions (mathematical expressions already available in Excel) and formulas (mathematical expressions that

More information

EDIT202 Spreadsheet Lab Prep Sheet

EDIT202 Spreadsheet Lab Prep Sheet EDIT202 Spreadsheet Lab Prep Sheet While it is clear to see how a spreadsheet may be used in a classroom to aid a teacher in marking (as your lab will clearly indicate), it should be noted that spreadsheets

More information

Table of Contents. Chapter 1

Table of Contents. Chapter 1 Table of Contents iii Table of Contents Chapter 1 Starting Excel Using an electronic spreadsheet 2 Starting Excel 2 Exploring the Start screen 4 Creating a blank workbook 4 Exploring the Excel window 5

More information

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

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

More information

Excel 2013 KPMG Excel Formulas and Functions

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

More information

Section 3. Formulas. By the end of this Section you should be able to:

Section 3. Formulas. By the end of this Section you should be able to: Excel 2003 CLAIT Plus Section 3 Formulas By the end of this Section you should be able to: Create Simple Formulas Understand Mathematical Operators Use Brackets Calculate Percentages Select Cells with

More information

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

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

More information

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

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

More information

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

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

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