Excel: Linking sheets and summary sheets (Mac OS)

Size: px
Start display at page:

Download "Excel: Linking sheets and summary sheets (Mac OS)"

Transcription

1 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 press ENTER To build formulae across worksheets Start to build your formula When a cell reference from another sheet is required, simply click to select the required worksheet, then click on the cell you require You will lose visibility of the formula in the worksheet, so continue building the formula in the formula bar at the top of the worksheet. To build formulae across Excel files Open all the Excel files to be used in the formula and view them on the screen together using Window >> Arrange (see previous section) Click where you want your formula to appear and start to build the formula When a cell reference from another file is required, click anywhere on the file to activate it. Click to select the required worksheet, then click on the cell you require Continue building the formula in the formula bar at the top of the worksheet. File names will appear in the formula as [filename.xlsx] Worksheet names will appear in the formula as worksheetname! To view multiple Excel files on the screen together Useful when building formulae across workbooks: Open the files in Excel On the Window menu, click on Arrange. Choose your preferred option (e.g. Horizontal) and click OK. The Excel files will all be visible on the screen. Only one will be active at any one time. The active workbook can be identified by: the ribbon above the sheet will not be greyed out. the Maximise, Minimise and Close buttons at the top left of that workbook will not be greyed out. Moving chart location e.g. to make them appear alongside other data on a summary sheet: Click on the chart to select it Copy the chart ( +C) Click on the sheet where you want to put the chart. Paste the chart ( +V). Hiding grid lines e.g. to build a summary sheet that looks a bit like a dashboard: Click on any cell in the worksheet. Click on Excel > Preferences Click on View Uncheck Show gridlines and click OK. Last updated April 2015 Information Services documents are online at: 1 Faye Brockwell

2 Autofill to copy formula to other cells Select the cell(s) you want to copy. The fill handle will appear at the bottom right of the selection Point at the fill handle until it becomes a cross. Click and drag to copy the data OR double-click to autofill all rows. Click on to change the type of fill (series, copy, formula only etc.) Absolute cell referencing to avoid problems when autofilling Absolute cell references are used when a formula references a cell/cells that must remain the same even when a formula is copied to other cells in the worksheet (e.g. using autofill).to make a cell reference absolute: Double click on the cell containing the formula Click once on the cell reference in the formula bar Press +T until cell reference meets your needs (see below) Original cell reference... D2 $D2 D$2 $D$2...when copied becomes E4 $D4 E$2 $D$2 Effect Both the column and the row coordinates change as the formula is copied The column coordinate is fixed, but the row coordinate changes The column coordinate changes, but the row coordinate is fixed. Both the column and row coordinates remain fixed Naming worksheets Naming your worksheets makes Select it easier the cell(s) to read you formulae want to copy. across The fill worksheets or files. Use short handle names. will appear at the bottom right of the Double click on the worksheet s selection tab at the bottom of the screen (e.g. Point Sheet1) at the fill handle until it becomes a cross. Type the new name of the worksheet and press ENTER. Cl Cl Note, this step is NOT the same as naming a cell range to use in a formula such as VLOOKUP. Adding cell borders This is useful when printing a worksheet or if you have hidden the gridlines on a worksheet to create a dashboard. Select the cells that you want to add the borders to. On the Home tab click on drop down arrow on the Border button Click to choose All Borders Name cells or ranges This technique can be used as an alternative to using absolute references when building VLOOKUP functions Select the cell or range you want to name Click in the Name box and type the name. Press ENTER To use, simply type the name wherever you would use a cell or range reference in a formula. E.g. =SUM(Wages) 2

3 Using VLOOKUP to pull data from another table Where several spreadsheets use the same data, it is useful to have one master 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. VLOOKUP is also useful where the data you want is held in 2 or more tables downloaded from CAMS and you want to link them together or compare them. In the example below, a VLOOKUP in column K uses the mark in column J to locate the corresponding grade in the second spreadsheet. Preparing your data for VLOOKUP For VLOOKUP to work: the master lookup table must be sorted by the key field (i.e. the field common to both tables). The master lookup table can be identified as the table with unique values in the key field column, ie each value only appears once. It is also useful (but not essential) to name the lookup table as it makes it simplifies the build of VLOOKUP formula. 3

4 Building the VLOOKUP The format of the VLOOKUP function is: =VLOOKUP(lookup_value,table_array,col_index_num,range_lookup) The key field on the current sheet. i.e. the cell containing the text or value in the current sheet that you want to check for in the other table Lookup_value Usually a cell reference on the same worksheet and in the same row as where you are building the VLOOKUP In our example on the previous page, the Mark is the key field as it is the value that appears on both tables. The name or cell range of the master table you want to check against. Table_array The first column in the range must contain the key field where you will look for the lookup_value. The table must be sorted on the key field. Cell references should be made absolute using $ signs (or you can name the table beforehand). The number of the column in the master table (table_array) containing the text or value that you are looking for (counting across from the first column). Col_index_num Do not use column letters here. In our example on the previous page, the Grade is held in column 2 on the master table. Used to specify whether you are only interested in exact matches or closest matches. Range_lookup Type FALSE to look for exact matches only If no exact matches are found, Excel will display #N/A as the result of the VLOOKUP Leave blank to find closest match. 4

5 VLOOKUP Example We have this sheet containing student marks: Use insert function (formula builder) to make VLOOKUP easier Start to type your formula until the first bracket e.g. =VLOOKUP( On the formula bar, click on the function button The pop-up window splits the formula into its arguments To select cells to add them to the formula simply select them in the worksheet. And this sheet (called Grades & Check Digits) containing the marks scheme: In cell K2 on the first sheet we have built the VLOOKUP function below to find the correct grade by: searching for the mark in cell J2 on the first sheet in the list of marks on the second sheet, reading across on the second sheet to find the corresponding grade in column 2: =VLOOKUP(J2,'Grades & Check Digits'!$A$2:$C$102,2,FALSE) J2 - We are building a VLOOKUP to find the Grade for Jill Shacklock. We need to check for Jill s Mark Lookup_value from the first table against the list of marks in the second table. Cell J2 contains Jill s mark in the first table. 'Grades & Check Digits'!$A$2:$C$102 Table_array The second table is cells A2 to C102 on the Grades & Check Digits worksheet 2 - Counting from the left on the second table, the Col_index_num Grade we are looking for is in column 2. Range_lookup FALSE - We only want to look for exact matches. MATCH function Match can be used as an alternative to VLOOKUP to check if the content of a cell exists in another table. If MATCH finds a match, it will return the position of the match in the list. If not match is found, #N/A will appear as the result of the formula. The format of the MATCH function is: =MATCH(lookup_value,lookup_array,match_type) The cell reference of the key field in the current row (this is usually on the same worksheet and in the same row as the cell where you are building your VLOOKUP Lookup_value function). i.e. the cell containing the text or value in this row that you want to check for in the other table The name or cell range of the single column in the table lookup_array you want to check against. Cell references should be made absolute using $ signs. Type 0 to look for exact matches only Match_type If no exact matches are found, Excel will display #N/A as the result of the VLOOKUP. 5

6 Pulling data from a Pivot Table The GETPIVOTDATA function can be used to make the content of a cell in a pivot table appear elsewhere. The function has the syntax: =GETPIVOTDATA("Data_field",Pivot_table,"Field1","Item1") Data field Pivot table Field 1 Item 1 Name of value field from Pivot Table (e.g. the field name that appears in the Values box on the Pivot Table) Cell reference (including worksheet name) of first cell at top left of the pivot table (i.e. the cell containing the text Row Labels) Name of the summary field for the value selected (e.g. the field name that appears in row or column labels box) Value of Field 1 for the desired pivot table sub-total. Example: Referring to the pivot table shown on the right, the following formula: =GETPIVOTDATA("Amount",Sheet1!$A$3,"Project","Sausages") Would pull: the Amount field from the Pivot Table that starts in cell A3 on Sheet1 of our workbook where the Project = Sausages i.e. in our example on the right, this would pull the value To make the function more flexible, you can change the Item1 reference to be a cell reference rather than an absolute value. This will allow you to copy the formula down a column using autofill to pick up other Item1 value. E.g. =GETPIVOTDATA("Amount",Sheet1!$A$3,"Project",A2) 6

7 IFERROR to eliminate error values When using functions such as GETPIVOTDATA or VLOOKUP, the result of the function will be an error if Excel finds no match. This will show in the cell as #REF or #N/A. Such results may cause problems if the data is to be used in a calculation or in conditional formatting. For example, in the sheet below a GETPIVOTDATA function has been used to pull the data in column G from a pivot table on a different sheet. The format of IFERROR is as follows: =IFERROR(value,value_if_error) where: Value is the nested function (e.g. the GETPIVOTDATA function in the example above) Value_if_error is what you would like to appear in the cell instead of #REF! or #N/A if the result of the function is an error. So, in our example above, the GETPIVOTDATA function in cell G2 with the IFERROR wrapped around it would look like this: =IFERROR(GETPIVOTDATA("Amount",'Pivot table by project'!$a$3,"project",a2),0) Cell G2 contains the function (which has then been copied down column G): =GETPIVOTDATA("Amount",'Pivot table by project'!$a$3,"project",a2) The result of this function in cell G3 is #REF! as there is no data in the pivot table for that project. This causes a problem for the total in cell G8 as #REF! is not a number. The text in red above is the original GETPIVOTDATA function. All that has been added to that function is: IFERROR( between the = and GETPIVOTDATA,0) at the end of the GETPIVOTDATA function (after the closing bracket) When copied down the column, in the example above, G3 shows as a numeric value, which in turn resolves the problem with the total in G8, as shown below. To avoid this problem, the IFERROR function is used. IFERROR is added as a wrapper around another function. If the result of the nested function is FALSE, IFERROR replaces the resulting #REF! or #N/A with a value that can then be used in calculations or conditional formatting. 7

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

IF & VLOOKUP Function

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

More information

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

MODULE VI: MORE FUNCTIONS

MODULE VI: MORE FUNCTIONS MODULE VI: MORE FUNCTIONS Copyright 2012, National Seminars Training More Functions Using the VLOOKUP and HLOOKUP Functions Lookup functions look up values in a table and return a result based on those

More information

Excel 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

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

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

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

Excel for Data Visualization

Excel for Data Visualization Introduction to Excel for Data Visualization CHEAT SHEET CONTENT Basic data cleaning troubleshooting... 04 Three useful excel formulas... 05 INDEX MATCH VLOOKUP COUNTIF Why use INDEX MATCH?... 06 Why use

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

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

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

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

Microsoft Office Excel 2007: Advanced Unit 02 - Lookups and Data Tables

Microsoft Office Excel 2007: Advanced Unit 02 - Lookups and Data Tables Microsoft Office Excel 2007: Advanced Unit 02 - Lookups and Data Tables Slide 1 Lookups and data tables Unit objectives Use VLOOKUP and HLOOKUP to find values in a worksheet list Use MATCH to find the

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

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

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

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

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

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

MICROSOFT OFFICE APPLICATIONS

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

More information

Excel 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

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

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

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

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

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

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

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

Microsoft Office Excel 2007: Basic. Course Overview. Course Length: 1 Day. Course Overview

Microsoft Office Excel 2007: Basic. Course Overview. Course Length: 1 Day. Course Overview Microsoft Office Excel 2007: Basic Course Length: 1 Day Course Overview This course teaches the basic functions and features of Excel 2007. After an introduction to spreadsheet terminology and Excel's

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

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

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

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

Themes & Templates Applying a theme Customizing a theme Creatingfilefromtemplate Creating yourowncustomize Template Using templates Editing templates

Themes & Templates Applying a theme Customizing a theme Creatingfilefromtemplate Creating yourowncustomize Template Using templates Editing templates 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

Uploading Scantron Scores to CourseWeb

Uploading Scantron Scores to CourseWeb From your course in, go to the Full Grade Center view. Look for a Work Offline button on the right side of the screen. Click on it, choose Download from the menu that appears and you will get a form for

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

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

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

COMM 391 Winter 2014 Term 1. Tutorial 2: Microsoft Excel Using VLookUp and Creating PivotChart

COMM 391 Winter 2014 Term 1. Tutorial 2: Microsoft Excel Using VLookUp and Creating PivotChart COMM 391 Winter 2014 Term 1 Tutorial 2: Microsoft Excel Using VLookUp and Creating PivotChart The purpose of this tutorial is to enable you to learn how to use the VLookUp function and create a PivotChart

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

CS1100: Computer Science and Its Applications

CS1100: Computer Science and Its Applications CS1100: Computer Science and Its Applications Table Lookup and Error Processing Created By Martin Schedlbauer m.schedlbauer@neu.edu Excel Basics LOOKUP AND MAPPING CS1100 Lookup and Error Processing 2

More information

Customizing the Ribbon

Customizing the Ribbon Beginning Excel Tech Workshop Fall 2016 Customizing the Ribbon Excel comes with many built in functions and tabs. If you want to customize what appears on your ribbon, you can do so by going to File -->

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

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

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

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

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

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

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

1. In the accompanying figure, the months were rotated by selecting the text and dragging the mouse pointer up and to the right.

1. In the accompanying figure, the months were rotated by selecting the text and dragging the mouse pointer up and to the right. Excel: Chapter 3 True/False Indicate whether the statement is true or false. Figure 3-3 1. In the accompanying figure, the months were rotated by selecting the text and dragging the mouse pointer up and

More information

Introduction to Excel 2013

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

More information

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

Office of Instructional Technology

Office of Instructional Technology Office of Instructional Technology Microsoft Excel 2016 Contact Information: 718-254-8565 ITEC@citytech.cuny.edu Contents Introduction to Excel 2016... 3 Opening Excel 2016... 3 Office 2016 Ribbon... 3

More information

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

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

More information

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

Microsoft Certified Application Specialist Exam Objectives Map

Microsoft Certified Application Specialist Exam Objectives Map Microsoft Certified Application Specialist Exam s Map This document lists all Microsoft Certified Application Specialist exam objectives for (Exam 77-602) and provides references to corresponding coverage

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

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

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

GCSE CCEA GCSE EXCEL 2010 USER GUIDE. Business and Communication Systems

GCSE CCEA GCSE EXCEL 2010 USER GUIDE. Business and Communication Systems GCSE CCEA GCSE EXCEL 2010 USER GUIDE Business and Communication Systems For first teaching from September 2017 Contents Page Define the purpose and uses of a spreadsheet... 3 Define a column, row, and

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

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

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

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

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

Microsoft Office Excel 2010: Basic. Course Overview. Course Length: 1 Day. Course Overview Microsoft Office Excel 2010: Basic Course Length: 1 Day Course Overview This course teaches the basic functions and features of Excel 2010. After an introduction to spreadsheet terminology and Excel's

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

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

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

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

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

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

New Perspectives on Microsoft Excel Module 3: Performing Calculations with formulas and Functions

New Perspectives on Microsoft Excel Module 3: Performing Calculations with formulas and Functions New Perspectives on Microsoft Excel 2016 Module 3: Performing Calculations with formulas and Functions Objectives, Part 1 Document formulas and data values Explore function syntax Insert functions from

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

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

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

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

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

More information

Microsoft Exam Microsoft Excel 2013 Expert Part 1 Version: 3.0 [ Total Questions: 62 ]

Microsoft Exam Microsoft Excel 2013 Expert Part 1 Version: 3.0 [ Total Questions: 62 ] s@lm@n Microsoft Exam 77-427 Microsoft Excel 2013 Expert Part 1 Version: 3.0 [ Total Questions: 62 ] Question No : 1 DRAG DROP You work as a Help Desk Technician for Net Perfect Inc. You use Excel 2013

More information

Introduction to Information Technology

Introduction to Information Technology Introduction to Information Technology Assessment of Fundamental Competencies Model Paper 50 marks 1 hour 30 minutes Instructions to Candidates: (i) Select the most appropriate answer from the options

More information

Quick Guide for Excel 2015 Data Management November 2015 Training:

Quick Guide for Excel 2015 Data Management November 2015 Training: http://pfw.edu Quick Guide for Excel 2015 Data Management November 2015 Training: http://pfw.edu/training Excel 2016 Data Management AutoFill and Custom Lists AutoFill 1. Select the range that contains

More information

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

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

More information

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

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

EXCELLING WITH ANALYSIS AND VISUALIZATION

EXCELLING WITH ANALYSIS AND VISUALIZATION EXCELLING WITH ANALYSIS AND VISUALIZATION A PRACTICAL GUIDE FOR DEALING WITH DATA Prepared by Ann K. Emery July 2016 Ann K. Emery 1 Welcome Hello there! In July 2016, I led two workshops Excel Basics for

More information

Excel Flash Fill. Excel Flash Fill Example

Excel Flash Fill. Excel Flash Fill Example 1 Excel Flash Fill Some of the most time consuming and irritating aspects of Excel are working with repetitive information. This included writing formulas, formatting, separating dates, and entering names

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

Microsoft Excel Microsoft Excel

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

More information

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

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

More information

THE AMERICAN LAW INSTITUTE Continuing Legal Education

THE AMERICAN LAW INSTITUTE Continuing Legal Education 67 THE AMERICAN LAW INSTITUTE Continuing Legal Education Using Everyday Tech Tools To Maximize Your Law Practice Plus Ethics April 26, 2018 Philadelphia, Pennsylvania Utilizing Microsoft Excel for a More

More information

Excel: Tables, Pivot Tables & More

Excel: Tables, Pivot Tables & More Excel: Tables, Pivot Tables & More February 7, 2019 Sheldon Dueck, MCT dueck21@gmail.com http://bit.ly/pivottables_fmi (Booklet) 1 Contents Tables... 3 Different ways of creating pivot tables... 4 Compact,

More information