Tutorial 7: Using Advanced Functions, Conditional Formatting and Filtering

Size: px
Start display at page:

Download "Tutorial 7: Using Advanced Functions, Conditional Formatting and Filtering"

Transcription

1 1 Tutorial 7: Using Advanced Functions, Conditional Formatting and Filtering Objectives: Understand the use of structured references Evaluate single and multiple conditions using the IF function Evaluate multiple conditions using the AND and OR functions Nest functions Use the VLOOKUP function Check for errors with conditional formatting and IFERROR Summarize data using the COUNTIF, SUMIF and AVERAGEIF function for a single condition Summarize data using the COUNTIFS, SUMIFS and AVERAGEIFS function for a multiple conditions Use advanced filters and Database functions Case: Talent Tracs is a software development co. for the music and entertainment industry. Has over 100 employees and HR manager needs to maintain info on all these employees from basic data :name, gender, sex etc.. to more detailed info about their benefit choices and deductions. Open Employee Data workbook. Look at Employees worksheet. This has already been defined as a table to take advantage of the formatting and ability to have the total row. Need to name it Employee. Go to Table Tools Design and give the Table the Name Employee. Care has been taken in defining the different fields of data: 1. Fields require a minimum of maintenance. Age is not entered but instead entered birthdate, if need to can always calculate the Age Same with Years of Service. 2. Small manageable units of data example separate First and Last Name, separate address into city, state, zip 3. If a field is numeric but is to be treated as text ( example telephone numbers, social security, zip code) format it as text enter a number preceded by a Initially we will work with a simple If function to determine the premium for insurance for an employee who has selected this as an option. Premium is computed as.001 or.1% of their annual salary provided the employee has indicated that they want this insurance ie. col H is Y

2 2 Decision structure on p. 341 figure 7-2 Create a new calculated column. In cell N1 enter the the label Life Ins Premium and see how the table expands to include this column. Use the If function to perform this computation in cell N2. If you begin to type =If( and then point you will see structured references to elements of the table) We want to defer this concept for a little bit, so let s actually type in what we want. =if(h2= Y,k2*.001,0) BECAUSE IT IS A TABLE, the entire column is calculated. To format simply place insertion pointer in column heading H1 and when you see the down arrow, click and select the desired format. No w suppose that a 401 K deduction is available to employees who satisfy the conditions that they have been employed for at least a year and also that they are Full time employees. The amount of this deduction is 3% of their salary. Consider, how to generate this double condition See flowchart p. 343 Figure 7.5 Could use a nested If =If(m2>=1, if(g2= FT,.03*k2,0),0) Let s try it in column O O1 should have label 401K and O2 should have formula. Alternately you can use =And function which returns a true value provided all conditions specified are true. Can have up to 255 conditions specified). Delete results in col O and just enter And function to see how it works. Once students understand what the And function does.talk about nesting it. =If(And(G2= FT,M2>=1),k2*.03,0)

3 3 Structured References: Remember how we tried to use the mouse to select cell locations in creating our formulas, and we indicated that the formula looked differently because we were working in a table. Let s revisist that concept. What we saw was structured references. A structured reference can be an actual table name or column header. In our case table name is Employee and if want to look at column header within, use a column qualifier Employee[Annual Salary] ***This is considered to be fully qualified [Annual Salary] ***Not fully qualified As long as a reference is made within the excel Table then the table name need not be included but if outside of the table then it must be fully qualified. Let s change what we did for Life Insurance to (1)unqualified and (2) fully qualified 1. =if(*add Life Ins+= Y,*Annual Salary+*.001,0) Notice what happens when you type [ 2. =if(employee*add Life Ins+= Y,Employee*Annual Salary+*.001,0) Look at additional qualifiers on p. 345 #All entire table, all data, headers, total row if displayed #Data ---just data Employee[#All] Employee[#Data] #Headers just headers #Totals just total row..if not shown then an error is returned #ThisRow the current row in the specified column of the table Now let s delete the formula in column O and replace with structured references p. 345 =If(And(*Job Status+= FT,*Years Service+>=1),*Annual Salary+*.03,0) Ask them to follow the text Look at DatedIf function p. 348 Must have Analysis toolpack add in (Options Add-Ins) calculates the difference between two dates and shows the result in months, days or years. =DatedIF(starting date of period,ending date of period, Interval) where interval can be d, or M or Y meaning that you wish to calculate the number of complete days, months, or years between these dates. Look at Years of service and then use GoTo to move to cell AE2 to see what s there

4 4 Nested If Now let s extend this concept of nested ifs.suppose the company has decided to issue bonus based on grades There are only three paygrades for this company ie. grade of 1 will receive 2500, grade of 2 will receive 5000 and Grade of 3 will receive 7500 and if anything else is specified, it is an invalid code. See Figure 7-10 on p. 349 =if([pay grade]=1, 2500, if([pay grade+=2, 5000, if(*pay grade+=3, 7500, Invalid Grade ))) Or function Works like And function only one condition must be true for it to return a true Good for criteria providing for either or. Example supposing a decision is made to eliminate bonuses for employees who have worked less than a year or for those employees who earn more than 100,000. Look at p. 352 =if(or([years of service)<1, [Annual Salary] >100000),0, if[pay grade]=1, 2500, if([pay grade]=2, 5000, if(*pay grade+=3, 7500, Invalid Grade ))) More on understanding nested ifs: Think about the decision that is made in grading: If grade >=90 then A otherwise if grade >=80 then B otherwise if grade >=70 then C otherwise if grade >=60 then D otherwise F. Compose this nested If function. =if(*grade+>=90, A,If(*grade+>=80, B,If(*grade+>=70, C,if (*grade+>=60, D, F ))))

5 5 Lookup Tables An alternative sometimes to using Nested If statements is the use of Lookup Tables. Take the example presented in the text where each employee of Talent Tracs is given the option of selecting different health coverage. HMOF Family at $1500 HMOI Individual at $875 PPOF Family at $1650 PPOI Individual at $950 None $0 Talent Tracs pays for all different rates. In column L is employee health plan code Could devise an IF = If(*Health Plan+= HMOF,1500, If(*Health Plan+= HMOI,875, If ((*Health Plan+ = PPOF, 1650,IF([Health Plan+ = PPOI, 950,0)))) Could have used cell addresses of $ amounts Lookup Tables!$c$4 etc Instead we will use a Lookup Table and the Vlookup function. A Lookup Table is a table that organizes data into categories and consists of 2 parts o Compare values in 1 st column which are matched to a lookup value specified in Vlookup function o Adjacent columns which contain values that are returned depending on the match. =Vlookup(lookup value, lookup table(either table name or range),col index (what you want to retrieve), range lookup (False if exact or True if within a range) Create column Q and in Q1 enter Health Cost. In Q2 enter Vlookup and then go back and multiply formula in Q2 since this was a monthly amount and Talent Tracs wants annual amount. If you wish to do an approximate match ie. within a range of values then set rangelookup to True. Add a new column R which will reflect an Award that is given based on years of service.

6 6 Look at the Lookup table. Years of Service Recognition Award 0 $ - 1 $ $ $ $ 500 Essentially if years of service is less than 1 year no award >= 1 and < >=3 and <5 200 >=5 and <7 300 > =7 500 Look at page 359 for an example used for grading. Checking for Data Entry Errors Using Conditional Formatting you can check data for duplicates using the Highlight cells option. Follow p. 361 You can also specify your own rule for formatting by selecting New Rule and entering a formula that will result in a true or false condition. Start it with an = but it can simply be in the form of =C2<D2. Follow Insight on p. 362 You can edit existing conditional formatting rules in the Manage Rules option for Conditional Formatting Follow p. 363 Using the IFError function When an error occurs in Excel, you get vague error messages such as #N/A (value is not available to a formula or function) or #DIV/0! See table on p Can make these more descriptive by the use of the IfError function. =iferror(expression, value or message If an error occurs) Example: =iferror(b12/b14, B14 contains a zero value )

7 7 Take this and apply to Vlookup function p.366 =IfError(Vlookup(l2,HealthPlanRates,2,False), Invalid Code ) Summarizing Data Conditionally You can use the basic statistical functions of Sum, Count, Average with a condition by choosing: Countif =CountIf(range, criteria) where range is the one that is to be matched to the criteria and counted. Example: =CountIf(Employee*Location+, Nashville ) Here Employee[Location] will be counted if its contents match Nashville SumIf and AverageIf =SumIf(range,criteria,range to sum) In other words the additional range to sum is added to indicate what is the range that will be summed. since the first specified is the one that is matched to the criteria. Example: =SumIf(Employee*Location+, Nashville,Employee*Bonus]) Here if Employee[Location] matches Nashville, then the Bonus for that employee will be added to the sum. =AverageIf(range,criteria,range to average) works the same way but result in the average Criteria must be enclosed in and could be a text string that you want to match or an expression with a conditional operator. see p Extend the capability of these functions to encompass multiple ranges with different criteria SumIFS and CountIFS and AverageIfs Example: =Countifs(Employee[Job Status+, FT,Employee*Sex+, F,Employee*Annual Salary+, >50000 ) Here you have specified three different criteria that you will use to determine whether to add to a count, (all criteria must be satisfied). If an employee is Ft, female and earns more than $50,000, then that record will be included in the count.

8 8 You can specify up to 127 different criteria. The SumIFs and AverageIFs are a little different in that you specify a range to sum or average, and then multiple criteria that you will use to decide if a value will be included in sum. Previously in the SumIf and AverageIf the range being summed or averaged was last, now it is first. Example: =Sumifs(Employee[Annual Salary], Employee*Location+, Austen,Employee*Hire Date+, >=1/1/2008, Employee[Job Status+, FT ) explain what this means. The annual salary of an employee will be added to the sum provided the employee is from Austen and is Full time and was hired after Jan. 1, Example: =AverageIFS(Employee[Annual Salary], Employee*Sex+, M,Employee*Years of Service+, >=5 ) The annual salary of male employees who have worked more than 5 years is included in the average. Session 7.3 Using Advanced Filtering This feature allows you to perform multiple And/Or conditions across multiple fields. To do this, you must define a criteria range somewhere in the worksheet. Easiest way is to copy the headings from your table. Place the criteria that you are testing for under the appropriate field name. If they are on the same row, it is an AND condition. If on different rows, then it is OR. Using our table headers as an example Employees who are FT and have salaries greater than $50,000 Job Status Add Life Ins Grade Type Annual Salary = FT >50000 Health Plan Years Service Life Ins Premium 401 K Raise Employees who are FT or have salaries greater than $50,000 (Note the different lines) Job Status = FT Add Life Ins Grade Type Annual Salary Health Plan Years Service Life Ins Premium 401 K Raise >50000

9 9 What about Employees who are either FT and earn < or those that are PT and are Salaried, code S in type. Job Status Add Life Ins Grade Type Annual Salary = FT <30000 Health Plan Years Service Life Ins Premium 401 K Raise = PT = S Conditions are formed in different ways depending upon what you wish to check for. For values, it is pretty clear what is meant. value - for an exact match either use = or simply state the number (or same if using a date) text for an exact match must use = =string begins with simply specify the string greater than or less than alphabetically >letter between : beginning >= beginning text string and ending <=ending text string (These must be in separate cells so you can repeat a header if necessary. Wild card specifications can be used to find things in between a word *church* will find any string that contains the word church in it somewhere. Look at top of p This shows that an exact match is requested. If you simply type = Home or Home any string containing Home including Homebound and Homeward would match whereas = =Home requires an exact match. Goto p. 376 and create the Criteria range.

10 10 Using Database functions to summarize: Database functions provide an additional way to summarize data. More available than simply sum, count and average. You also have DMax, Dmin, DCountA(only non-blank cells are included), DSTDEV =DfunctionName(table range, column to summarize, criteria range) Example: Establish criteria: Health Plan HMO Type S If want all Salaried employees who have selected an HMO either HMOI or HMOF, simply type in HMO under Health Plan and under Type place and S Now you can enter a database function such as =DCount(Employee, ID, criteria range) Note here we only specify the name of the column and not the whole column as we have done in the past. i.e. Employee*ID+ would not work.why do you think that happens?????

11 11

EXCEL 2007 VLOOKUP FOR BUDGET EXAMPLE

EXCEL 2007 VLOOKUP FOR BUDGET EXAMPLE EXCEL 2007 VLOOKUP FOR BUDGET EXAMPLE 1 The primary reports used in the budgeting process, particularly for Financial Review, are the Quarterly Financial Review Reports. These expense and revenue reports

More information

Performing Simple Calculations Using the Status Bar

Performing Simple Calculations Using the Status Bar Excel Formulas Performing Simple Calculations Using the Status Bar If you need to see a simple calculation, such as a total, but do not need it to be a part of your spreadsheet, all you need is your Status

More information

Excel Database Management Microsoft Excel 2003

Excel Database Management Microsoft Excel 2003 Excel Database Management Microsoft Reference Guide University Technology Services Computer Training Copyright Notice Copyright 2003 EBook Publishing. All rights reserved. No part of this publication may

More information

How To Use Excel With A Calculator

How To Use Excel With A Calculator Functions & Data Analysis Tools Academic Computing Services www.ku.edu/acs Abstract: This workshop focuses on the functions and data analysis tools of Microsoft Excel. Topics included are the function

More information

How to Excel with CUFS Part 2 Excel 2010

How to Excel with CUFS Part 2 Excel 2010 How to Excel with CUFS Part 2 Excel 2010 Course Manual Finance Training Contents 1. Working with multiple worksheets 1.1 Inserting new worksheets 3 1.2 Deleting sheets 3 1.3 Moving and copying Excel worksheets

More information

Microsoft Excel 2007 Critical Data Analysis Using Functions

Microsoft Excel 2007 Critical Data Analysis Using Functions V O L U M E 4 Microsoft Excel 007 Critical Data Analysis Using Functions DASH DESIGNS CONSULTING Technology Training and Consulting Services Excel 007 Critical Data Analysis Using Functions For The Haas

More information

USC Marshall School of Business Academic Information Services. Excel 2007 Qualtrics Survey Analysis

USC Marshall School of Business Academic Information Services. Excel 2007 Qualtrics Survey Analysis USC Marshall School of Business Academic Information Services Excel 2007 Qualtrics Survey Analysis DESCRIPTION OF EXCEL ANALYSIS TOOLS AVAILABLE... 3 Summary of Tools Available and their Properties...

More information

Course Contents For All : Advance Excel & VBA Macros

Course Contents For All : Advance Excel & VBA Macros Pankaj Kumar Gupta: Trainer Advanced Excel & VBA Macros Ph. 8750676667, 9871076667, Email: info@advancedexcel.net, advancedexcel07@gmail.com www.advancedexcel.net, www.vbamacrosexcel.com Office Address:

More information

Lesson 4.3: Using the VLOOKUP Function

Lesson 4.3: Using the VLOOKUP Function Lesson 4.3: Using the VLOOKUP Function Excel 2003 provides two lookup functions that you can use to quickly retrieve information from a table. The functions are called HLOOKUP (horizontal lookup) and VLOOKUP

More information

ACCESS 2007. Importing and Exporting Data Files. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700

ACCESS 2007. Importing and Exporting Data Files. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700 Information Technology MS Access 2007 Users Guide ACCESS 2007 Importing and Exporting Data Files IT Training & Development (818) 677-1700 training@csun.edu TABLE OF CONTENTS Introduction... 1 Import Excel

More information

Getting Started with Excel 2008. Table of Contents

Getting Started with Excel 2008. Table of Contents Table of Contents Elements of An Excel Document... 2 Resizing and Hiding Columns and Rows... 3 Using Panes to Create Spreadsheet Headers... 3 Using the AutoFill Command... 4 Using AutoFill for Sequences...

More information

Data File needed for this Case Problem: Modem.xlsx

Data File needed for this Case Problem: Modem.xlsx CASE 1 Data File needed for this Case Problem: Modem.xlsx PC-Market Distribution Linda Klaussen works for PC-Market Distribution, a computer supply store. She needs your help in designing an Excel workbook

More information

MICROSOFT EXCEL STEP BY STEP GUIDE

MICROSOFT EXCEL STEP BY STEP GUIDE IGCSE ICT SECTION 14 DATA ANALYSIS MICROSOFT EXCEL STEP BY STEP GUIDE Mark Nicholls ICT Lounge Data Analysis Self Study Guide Contents Learning Outcomes Page 3 What is a Data Model?... Page 4 Spreadsheet

More information

Transforming Data into Critical Insights using Excel Dashboards. Dianne Auld

Transforming Data into Critical Insights using Excel Dashboards. Dianne Auld Transforming Data into Critical Insights using Excel Dashboards Dianne Auld What are Excel Dashboards? High level executive summary usually one page Purpose - to provide critical information that can be

More information

Microsoft Excel 2007 Mini Skills Overview of Tables

Microsoft Excel 2007 Mini Skills Overview of Tables To make managing and analyzing a group of related data easier, you can turn a range of cells into a Microsoft Office Excel table (previously known as an Excel list). A table typically contains related

More information

How to Use a Data Spreadsheet: Excel

How to Use a Data Spreadsheet: Excel How to Use a Data Spreadsheet: Excel One does not necessarily have special statistical software to perform statistical analyses. Microsoft Office Excel can be used to run statistical procedures. Although

More information

Monte Carlo Simulation. SMG ITS Advanced Excel Workshop

Monte Carlo Simulation. SMG ITS Advanced Excel Workshop Advanced Excel Workshop Monte Carlo Simulation Page 1 Contents Monte Carlo Simulation Tutorial... 2 Example 1: New Marketing Campaign... 2 VLOOKUP... 5 Example 2: Revenue Forecast... 6 Pivot Table... 8

More information

ACS Microcomputer Workshop Excel: Functions and Data Analysis Tools

ACS Microcomputer Workshop Excel: Functions and Data Analysis Tools ACS Microcomputer Workshop Excel: Functions and Data Analysis Tools Introduction The Excel software package consists of three basic parts: its electronic spreadsheet, graphics, and database utilities.

More information

Designed by Jason Wagner, Course Web Programmer, Office of e-learning ZPRELIMINARY INFORMATION... 1 LOADING THE INITIAL REPORT... 1 OUR EXAMPLE...

Designed by Jason Wagner, Course Web Programmer, Office of e-learning ZPRELIMINARY INFORMATION... 1 LOADING THE INITIAL REPORT... 1 OUR EXAMPLE... Excel & Cognos Designed by Jason Wagner, Course Web Programmer, Office of e-learning ZPRELIMINARY INFORMATION... 1 LOADING THE INITIAL REPORT... 1 OUR EXAMPLE... 2 DEFINED NAMES... 2 BUILDING THE DASHBOARD:

More information

Detail Report Excel Guide for High Schools

Detail Report Excel Guide for High Schools StudentTracker SM Detail Report NATIONAL STUDENT CLEARINGHOUSE RESEARCH CENTER 2300 Dulles Station Blvd., Suite 300, Herndon, VA 20171 Contents How the National Student Clearinghouse populates its database...

More information

Commonly Used Excel Formulas

Commonly Used Excel Formulas Microsoft Excel 2007 Advanced Formulas Windows XP 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

More information

Advanced Excel for Institutional Researchers

Advanced Excel for Institutional Researchers Advanced Excel for Institutional Researchers Presented by: Sandra Archer Helen Fu University Analysis and Planning Support University of Central Florida September 22-25, 2012 Agenda Sunday, September 23,

More information

Microsoft Excel 2010

Microsoft Excel 2010 Microsoft Excel 2010 Special Topics PivotTable IF Function V-Lookup Function Information Technology Services Outreach and Distance Learning Technologies Copyright 2011 KSU Department of Information Technology

More information

Excel Intermediate. Table of Contents UPPER, LOWER, PROPER AND TRIM...28

Excel Intermediate. Table of Contents UPPER, LOWER, PROPER AND TRIM...28 Excel Intermediate Table of Contents Formulas UPPER, LOWER, PROPER AND TRM...2 LEFT, MID, and RIGHT...3 CONCATENATE...4 & (Ampersand)...5 CONCATENATE vs. & (Ampersand)...5 ROUNDUP, and ROUNDDOWN...6 VLOOKUP...7

More information

Excel 2003 Tutorials - Video File Attributes

Excel 2003 Tutorials - Video File Attributes Using Excel Files 18.00 2.73 The Excel Environment 3.20 0.14 Opening Microsoft Excel 2.00 0.12 Opening a new workbook 1.40 0.26 Opening an existing workbook 1.50 0.37 Save a workbook 1.40 0.28 Copy a workbook

More information

Tommy B. Harrington 104 Azalea Drive Greenville, NC 27858 Email: tommy@tommyharrington.com

Tommy B. Harrington 104 Azalea Drive Greenville, NC 27858 Email: tommy@tommyharrington.com M o s t U s e f u l E x c e l C o m m a n d s Tommy B. Harrington 104 Azalea Drive Greenville, NC 27858 Email: tommy@tommyharrington.com Computer Training YOU Can Understand! Most Useful Excel Commands

More information

EXCEL Tutorial: How to use EXCEL for Graphs and Calculations.

EXCEL Tutorial: How to use EXCEL for Graphs and Calculations. EXCEL Tutorial: How to use EXCEL for Graphs and Calculations. Excel is powerful tool and can make your life easier if you are proficient in using it. You will need to use Excel to complete most of your

More information

NATIONAL STUDENT CLEARINGHOUSE RESEARCH CENTER

NATIONAL STUDENT CLEARINGHOUSE RESEARCH CENTER StudentTracker SM Detail Report NATIONAL STUDENT CLEARINGHOUSE RESEARCH CENTER 2300 Dulles Station Blvd., Suite 300, Herndon, VA 20171 Contents How the National Student Clearinghouse populates its database...

More information

EXCEL 2007. Using Excel for Data Query & Management. Information Technology. MS Office Excel 2007 Users Guide. IT Training & Development

EXCEL 2007. Using Excel for Data Query & Management. Information Technology. MS Office Excel 2007 Users Guide. IT Training & Development Information Technology MS Office Excel 2007 Users Guide EXCEL 2007 Using Excel for Data Query & Management IT Training & Development (818) 677-1700 Training@csun.edu http://www.csun.edu/training TABLE

More information

Sample- for evaluation only. Advanced Excel. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc.

Sample- for evaluation only. Advanced Excel. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. 2010 Advanced Excel TeachUcomp, Inc. it s all about you Copyright: Copyright 2010 by TeachUcomp, Inc. All rights reserved. This publication,

More information

Using Excel for Analyzing Survey Questionnaires Jennifer Leahy

Using Excel for Analyzing Survey Questionnaires Jennifer Leahy University of Wisconsin-Extension Cooperative Extension Madison, Wisconsin PD &E Program Development & Evaluation Using Excel for Analyzing Survey Questionnaires Jennifer Leahy G3658-14 Introduction You

More information

Drawing a histogram using Excel

Drawing a histogram using Excel Drawing a histogram using Excel STEP 1: Examine the data to decide how many class intervals you need and what the class boundaries should be. (In an assignment you may be told what class boundaries to

More information

MICROSOFT EXCEL 2010 ANALYZE DATA

MICROSOFT EXCEL 2010 ANALYZE DATA MICROSOFT EXCEL 2010 ANALYZE DATA Microsoft Excel 2010 Essential Analyze data Last Edited: 2012-07-09 1 Basic analyze data... 4 Use diagram to audit formulas... 4 Use Error Checking feature... 4 Use Evaluate

More information

How To Understand The Basic Concepts Of A Database And Data Science

How To Understand The Basic Concepts Of A Database And Data Science Database Concepts Using Microsoft Access lab 9 Objectives: Upon successful completion of Lab 9, you will be able to Understand fundamental concepts including database, table, record, field, field name,

More information

EUROPEAN COMPUTER DRIVING LICENCE / INTERNATIONAL COMPUTER DRIVING LICENCE ADVANCED SPREADSHEETS

EUROPEAN COMPUTER DRIVING LICENCE / INTERNATIONAL COMPUTER DRIVING LICENCE ADVANCED SPREADSHEETS EUROPEAN COMPUTER DRIVING LICENCE / INTERNATIONAL COMPUTER DRIVING LICENCE ADVANCED SPREADSHEETS The European Computer Driving Licence Foundation Ltd. Portview House Thorncastle Street Dublin 4 Ireland

More information

Microsoft Office 2010: Access 2010, Excel 2010, Lync 2010 learning assets

Microsoft Office 2010: Access 2010, Excel 2010, Lync 2010 learning assets Microsoft Office 2010: Access 2010, Excel 2010, Lync 2010 learning assets Simply type the id# in the search mechanism of ACS Skills Online to access the learning assets outlined below. Titles Microsoft

More information

Microsoft Excel Tips & Tricks

Microsoft Excel Tips & Tricks Microsoft Excel Tips & Tricks Collaborative Programs Research & Evaluation TABLE OF CONTENTS Introduction page 2 Useful Functions page 2 Getting Started with Formulas page 2 Nested Formulas page 3 Copying

More information

You will use these functions a moderate amount, much more so for due diligence and analysis of order/customer/other data than in financial models.

You will use these functions a moderate amount, much more so for due diligence and analysis of order/customer/other data than in financial models. What This Guide Covers and How to Use It Rather than re-explaining every single function here, we re mostly going to give you solid examples that demonstrate how to use each function. Note that this guide

More information

EUROPEAN COMPUTER DRIVING LICENCE. Module AM4, Spreadsheets, Advanced - Level

EUROPEAN COMPUTER DRIVING LICENCE. Module AM4, Spreadsheets, Advanced - Level EUROPEAN COMPUTER DRIVING LICENCE Module AM4, Spreadsheets, Advanced - Level Copyright ª 2001 The ECDL Foundation Ltd. All rights reserved. No part of this publication may be reproduced in any form except

More information

To add a data form to excel - you need to have the insert form table active - to make it active and add it to excel do the following:

To add a data form to excel - you need to have the insert form table active - to make it active and add it to excel do the following: Excel Forms A data form provides a convenient way to enter or display one complete row of information in a range or table without scrolling horizontally. You may find that using a data form can make data

More information

CGS2531 Problem Solving Using Computer Software Sample Exam 3. Select the most appropriate answer(s).

CGS2531 Problem Solving Using Computer Software Sample Exam 3. Select the most appropriate answer(s). CGS2531 Problem Solving Using Computer Software Sample Exam 3. Select the most appropriate answer(s). Please also go through the exercises in the end of each chapter in the textbook. 1. The Text Import

More information

University of Southern California Marshall Information Services

University of Southern California Marshall Information Services University of Southern California Marshall Information Services Determine Breakeven Price Using Excel - Using Goal Seek, Data Tables, Vlookup & Charts This guide covers how to determine breakeven price

More information

EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002

EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002 EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002 Table of Contents Part I Creating a Pivot Table Excel Database......3 What is a Pivot Table...... 3 Creating Pivot Tables

More information

Excel 2007 Tutorials - Video File Attributes

Excel 2007 Tutorials - Video File Attributes Get Familiar with Excel 2007 42.40 3.02 The Excel 2007 Environment 4.10 0.19 Office Button 3.10 0.31 Quick Access Toolbar 3.10 0.33 Excel 2007 Ribbon 3.10 0.26 Home Tab 5.10 0.19 Insert Tab 3.10 0.19 Page

More information

Differences at a glance

Differences at a glance Differences at a glance In the past, you might ve used the consumer (such as Microsoft Office 2013) version of Microsoft Excel outside of work. Now that you re using Google Apps for Work, you ll find many

More information

Q&As: Microsoft Excel 2013: Chapter 2

Q&As: Microsoft Excel 2013: Chapter 2 Q&As: Microsoft Excel 2013: Chapter 2 In Step 5, why did the date that was entered change from 4/5/10 to 4/5/2010? When Excel recognizes that you entered a date in mm/dd/yy format, it automatically formats

More information

Microsoft Excel 2010 Part 3: Advanced Excel

Microsoft Excel 2010 Part 3: Advanced Excel CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Excel 2010 Part 3: Advanced Excel Winter 2015, Version 1.0 Table of Contents Introduction...2 Sorting Data...2 Sorting

More information

Database Applications Microsoft Access

Database Applications Microsoft Access Database Applications Microsoft Access Lesson 4 Working with Queries Difference Between Queries and Filters Filters are temporary Filters are placed on data in a single table Queries are saved as individual

More information

Rows & Columns. Workbooks & Worksheets

Rows & Columns. Workbooks & Worksheets + O + N + P + S F12 + W + Q Esc + C + X + V + Z + Y + A + F Ctrl + H + Tab +, + Y The Fundamentals + Option + R Open File New File Print Save File Save File As Close File Close Excel Exit Dialog Copy Cut

More information

Advanced Excel Charts : Tables : Pivots : Macros

Advanced Excel Charts : Tables : Pivots : Macros Advanced Excel Charts : Tables : Pivots : Macros Charts In Excel, charts are a great way to visualize your data. However, it is always good to remember some charts are not meant to display particular types

More information

Creating A Grade Sheet With Microsoft Excel

Creating A Grade Sheet With Microsoft Excel Creating A Grade Sheet With Microsoft Excel Microsoft Excel serves as an excellent tool for tracking grades in your course. But its power is not limited to its ability to organize information in rows and

More information

Using an Access Database

Using an Access Database A Few Terms Using an Access Database These words are used often in Access so you will want to become familiar with them before using the program and this tutorial. A database is a collection of related

More information

Excel Working with Data Lists

Excel Working with Data Lists Excel Working with Data Lists Excel Working with Data Lists Princeton University COPYRIGHT Copyright 2001 by EZ-REF Courseware, Laguna Beach, CA http://www.ezref.com/ All rights reserved. This publication,

More information

Overview What is a PivotTable? Benefits

Overview What is a PivotTable? Benefits Overview What is a PivotTable? Benefits Create a PivotTable Select Row & Column labels & Values Filtering & Sorting Calculations Data Details Refresh Data Design options Create a PivotChart Slicers Charts

More information

Advanced Spreadsheet Curriculum Content Frameworks

Advanced Spreadsheet Curriculum Content Frameworks Curriculum Content Frameworks Please note: All assessment questions will be taken from the knowledge portion of these frameworks. Prepared by Kelley Williamson, Springdale High School Facilitated by Karen

More information

Business Objects. Report Writing - CMS Net and CCS Claims

Business Objects. Report Writing - CMS Net and CCS Claims Business Objects Report Writing - CMS Net and CCS Claims Updated 11/28/2012 1 Introduction/Background... 4 Report Writing (Ad-Hoc)... 4 Requesting Report Writing Access... 4 Java Version... 4 Create A

More information

Loading Data into salesforce.com

Loading Data into salesforce.com Overview Data can be uploaded into salesforce.com from Excel using the sforce connector, an open source plugin for excel, available here: http://sforce.sourceforge.net/excel/downloads.htm This plug-in

More information

Charting LibQUAL+(TM) Data. Jeff Stark Training & Development Services Texas A&M University Libraries Texas A&M University

Charting LibQUAL+(TM) Data. Jeff Stark Training & Development Services Texas A&M University Libraries Texas A&M University Charting LibQUAL+(TM) Data Jeff Stark Training & Development Services Texas A&M University Libraries Texas A&M University Revised March 2004 The directions in this handout are written to be used with SPSS

More information

STEP TWO: Highlight the data set, then select DATA PIVOT TABLE

STEP TWO: Highlight the data set, then select DATA PIVOT TABLE STEP ONE: Enter the data into a database format, with the first row being the variable names, and each row thereafter being one completed survey. For this tutorial, highlight this table, copy and paste

More information

Advanced Microsoft Excel 2013

Advanced Microsoft Excel 2013 Advanced Microsoft Excel 2013 Introduction Microsoft Excel is program designed to efficiently manage spreadsheets and analyze data. It contains both basic and advanced features that anyone can learn. Once

More information

Excel: Further Functions

Excel: Further Functions IT Training Excel: Further Functions Jane Barrett, IT Training & Engagement Team Information System Services Version 4.1 Scope Learning outcomes Understand basic cell manipulation using formulas and formatting

More information

Working with Spreadsheets

Working with Spreadsheets osborne books Working with Spreadsheets UPDATE SUPPLEMENT 2015 The AAT has recently updated its Study and Assessment Guide for the Spreadsheet Software Unit with some minor additions and clarifications.

More information

Microsoft Excel 2013: Using a Data Entry Form

Microsoft Excel 2013: Using a Data Entry Form Microsoft Excel 2013: Using a Data Entry Form Using Excel's built in data entry form is a quick and easy way to enter data into an Excel database. Using the form allows you to: start a new database table

More information

INTERMEDIATE Excel 2013

INTERMEDIATE Excel 2013 INTERMEDIATE Excel 2013 Information Technology September 1, 2014 1 P a g e Managing Workbooks Excel uses the term workbook for a file. The term worksheet refers to an individual spreadsheet within a workbook.

More information

9 Calculated Members and Embedded Summaries

9 Calculated Members and Embedded Summaries 9 Calculated Members and Embedded Summaries 9.1 Chapter Outline The crosstab seemed like a pretty useful report object prior to Crystal Reports 2008. Then with the release of Crystal Reports 2008 we saw

More information

Commonly Used Excel Functions. Supplement to Excel for Budget Analysts

Commonly Used Excel Functions. Supplement to Excel for Budget Analysts Supplement to Excel for Budget Analysts Version 1.0: February 2016 Table of Contents Introduction... 4 Formulas and Functions... 4 Math and Trigonometry Functions... 5 ABS... 5 ROUND, ROUNDUP, and ROUNDDOWN...

More information

Differences in Use between Calc and Excel

Differences in Use between Calc and Excel Differences in Use between Calc and Excel Title: Differences in Use between Calc and Excel: Version: 1.0 First edition: October 2004 Contents Overview... 3 Copyright and trademark information... 3 Feedback...3

More information

MS Excel as a Database

MS Excel as a Database Centre for Learning and Academic Development (CLAD) Technology Skills Development Team MS Excel as a Database http://intranet.birmingham.ac.uk/itskills Using MS Excel as a Database (XL2103) Author: Sonia

More information

The Center for Teaching, Learning, & Technology

The Center for Teaching, Learning, & Technology The Center for Teaching, Learning, & Technology Instructional Technology Workshops Microsoft Excel 2010 Formulas and Charts Albert Robinson / Delwar Sayeed Faculty and Staff Development Programs Colston

More information

Page 1 EXPERT. 1.1 Manage Multiple Workbooks Pages Where Covered Modifying existing templates. 356 (Step 7 Tip) Merging multiple workbooks

Page 1 EXPERT. 1.1 Manage Multiple Workbooks Pages Where Covered Modifying existing templates. 356 (Step 7 Tip) Merging multiple workbooks Page 1 EXPERT Study Guide for MOS Objectives (Expert) in Microsoft Excel 2013 Illustrated 1.0 Manage and Share Workbooks 1.1 Manage Multiple Workbooks Pages Where Covered Modifying existing templates 356

More information

Excel Reporting with 1010data

Excel Reporting with 1010data Excel Reporting with 1010data (212) 405.1010 info@1010data.com Follow: @1010data www.1010data.com Excel Reporting with 1010data Contents 2 Contents Overview... 3 Start with a 1010data query... 5 Running

More information

Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP

Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP Consolidate Data in Multiple Worksheets Example data is saved under Consolidation.xlsx workbook under ProductA through ProductD

More information

Microsoft Office. Mail Merge in Microsoft Word

Microsoft Office. Mail Merge in Microsoft Word Microsoft Office Mail Merge in Microsoft Word TABLE OF CONTENTS Microsoft Office... 1 Mail Merge in Microsoft Word... 1 CREATE THE SMS DATAFILE FOR EXPORT... 3 Add A Label Row To The Excel File... 3 Backup

More information

Excel 2010: Create your first spreadsheet

Excel 2010: Create your first spreadsheet Excel 2010: Create your first spreadsheet Goals: After completing this course you will be able to: Create a new spreadsheet. Add, subtract, multiply, and divide in a spreadsheet. Enter and format column

More information

CIS300 - Study Guide for Test 3

CIS300 - Study Guide for Test 3 Coverage Management Information Systems Chapter 7: Databases and Data Warehouses (concepts only) Succeeding in Business with Microsoft Excel 2010 slides Chapter 7: Organizing Data for Effective Analysis

More information

Sage Intelligence Report Designer Add-In

Sage Intelligence Report Designer Add-In Sage Intelligence Report Designer Add-In Q: What is Sage Intelligence Reporting? A: Sage Intelligence Reporting helps you to easily control, automate and analyze your data to make better informed decision,

More information

Use Find & Replace Commands under Home tab to search and replace data.

Use Find & Replace Commands under Home tab to search and replace data. Microsoft Access 2: Managing Data in Tables and Creating Relationships You have created tables in an Access database. Data in Access tables can be added, deleted, and updated to be current (practiced in

More information

4. The Third Stage In Designing A Database Is When We Analyze Our Tables More Closely And Create A Between Tables

4. The Third Stage In Designing A Database Is When We Analyze Our Tables More Closely And Create A Between Tables 1. What Are The Different Views To Display A Table A) Datasheet View B) Design View C) Pivote Table & Pivot Chart View D) All Of Above 2. Which Of The Following Creates A Drop Down List Of Values To Choose

More information

Top ClientBase Windows Queries

Top ClientBase Windows Queries Top ClientBase Windows Queries Table of Contents Overview... 1 Maintenance Queries... 1 Profiles with missing emails:... 1 Invalid emails (missing@ or.):... 2 Incomplete Address Information:... 3 Profiles

More information

Employee Management Overview Phase 2

Employee Management Overview Phase 2 Employee Management Overview Phase 2 Table of Contents User Logins... 3 Employee Information Window... 5 Employee Specific Commissions... 15 Employee Schedules... 21 User Logins 3 User Logins The User

More information

Scott Harvey, Registrar Tri County Technical College. Using Excel Pivot Tables to Analyze Student Data

Scott Harvey, Registrar Tri County Technical College. Using Excel Pivot Tables to Analyze Student Data Scott Harvey, Registrar Tri County Technical College Using Excel Pivot Tables to Analyze Student Data 1Introduction to PivotTables 2Prepare the source data Discussion Points 3Create a PivotTable 5Show

More information

Accounting & Financial Modeling Liberal Arts Boot Camp Overview

Accounting & Financial Modeling Liberal Arts Boot Camp Overview fa Accounting & Financial Modeling Liberal Arts Boot Camp Overview 2-day intensive training program where liberal arts students learn financial accounting, financial modeling in Excel, and technical interview

More information

Table of Contents TASK 1: DATA ANALYSIS TOOLPAK... 2 TASK 2: HISTOGRAMS... 5 TASK 3: ENTER MIDPOINT FORMULAS... 11

Table of Contents TASK 1: DATA ANALYSIS TOOLPAK... 2 TASK 2: HISTOGRAMS... 5 TASK 3: ENTER MIDPOINT FORMULAS... 11 Table of Contents TASK 1: DATA ANALYSIS TOOLPAK... 2 TASK 2: HISTOGRAMS... 5 TASK 3: ENTER MIDPOINT FORMULAS... 11 TASK 4: ADD TOTAL LABEL AND FORMULA FOR FREQUENCY... 12 TASK 5: MODIFICATIONS TO THE HISTOGRAM...

More information

MS Excel: Analysing Data using Pivot Tables

MS Excel: Analysing Data using Pivot Tables Centre for Learning and Academic Development (CLAD) Technology Skills Development Team MS Excel: Analysing Data using Pivot Tables www.intranet.birmingham.ac.uk/itskills MS Excel: Analysing Data using

More information

PayData A Vermont Company Working for You!

PayData A Vermont Company Working for You! PayData A Vermont Company Working for You! Introduction Welcome to the Evolution Employee Set Up and Payroll Processing Reference Manual! This manual is one part of an ongoing initiative to provide comprehensive

More information

SPSS Workbook 1 Data Entry : Questionnaire Data

SPSS Workbook 1 Data Entry : Questionnaire Data TEESSIDE UNIVERSITY SCHOOL OF HEALTH & SOCIAL CARE SPSS Workbook 1 Data Entry : Questionnaire Data Prepared by: Sylvia Storey s.storey@tees.ac.uk SPSS data entry 1 This workbook is designed to introduce

More information

Data Analysis Tools. Tools for Summarizing Data

Data Analysis Tools. Tools for Summarizing Data Data Analysis Tools This section of the notes is meant to introduce you to many of the tools that are provided by Excel under the Tools/Data Analysis menu item. If your computer does not have that tool

More information

Data Management for Multi-Environment Trials in Excel

Data Management for Multi-Environment Trials in Excel Data Management for Multi-Environment Trials in Excel Cathy Garlick (c.a.garlick@reading.ac.uk), Statistical Services Centre, University of Reading, UK 27 May 2010 1. Introduction Excel is widely available

More information

Formulas & Functions in Microsoft Excel

Formulas & Functions in Microsoft Excel Formulas & Functions in Microsoft Excel Theresa A Scott, MS Biostatistician III Department of Biostatistics Vanderbilt University theresa.scott@vanderbilt.edu Table of Contents 1 Introduction 1 1.1 Using

More information

Basic Pivot Tables. To begin your pivot table, choose Data, Pivot Table and Pivot Chart Report. 1 of 18

Basic Pivot Tables. To begin your pivot table, choose Data, Pivot Table and Pivot Chart Report. 1 of 18 Basic Pivot Tables Pivot tables summarize data in a quick and easy way. In your job, you could use pivot tables to summarize actual expenses by fund type by object or total amounts. Make sure you do not

More information

Preface of Excel Guide

Preface of Excel Guide Preface of Excel Guide The use of spreadsheets in a course designed primarily for business and social science majors can enhance the understanding of the underlying mathematical concepts. In addition,

More information

MICROSOFT EXCEL FORMULAS

MICROSOFT EXCEL FORMULAS MICROSOFT EXCEL FORMULAS Building Formulas... 1 Writing a Formula... 1 Parentheses in Formulas... 2 Operator Precedence... 2 Changing the Operator Precedence... 2 Functions... 3 The Insert Function Button...

More information

Using Excel for Statistics Tips and Warnings

Using Excel for Statistics Tips and Warnings Using Excel for Statistics Tips and Warnings November 2000 University of Reading Statistical Services Centre Biometrics Advisory and Support Service to DFID Contents 1. Introduction 3 1.1 Data Entry and

More information

Result Entry by Spreadsheet User Guide

Result Entry by Spreadsheet User Guide Result Entry by Spreadsheet User Guide Created in version 2007.3.0.1485 1/50 Table of Contents Result Entry by Spreadsheet... 3 Result Entry... 4 Introduction... 4 XML Availability... 4 Result Entry...

More information

Formulas & Functions in Microsoft Excel

Formulas & Functions in Microsoft Excel Formulas & Functions in Microsoft Excel Theresa A Scott, MS Biostatistician II Department of Biostatistics Vanderbilt University theresa.scott@vanderbilt.edu Table of Contents 1 Introduction 1 1.1 Using

More information

Microsoft Access 2010: Basics & Database Fundamentals

Microsoft Access 2010: Basics & Database Fundamentals Microsoft Access 2010: Basics & Database Fundamentals This workshop assumes you are comfortable with a computer and have some knowledge of other Microsoft Office programs. Topics include database concepts,

More information

SECTION 2-1: OVERVIEW SECTION 2-2: FREQUENCY DISTRIBUTIONS

SECTION 2-1: OVERVIEW SECTION 2-2: FREQUENCY DISTRIBUTIONS SECTION 2-1: OVERVIEW Chapter 2 Describing, Exploring and Comparing Data 19 In this chapter, we will use the capabilities of Excel to help us look more carefully at sets of data. We can do this by re-organizing

More information

Tutorial: Creating a form that emails the results to you.

Tutorial: Creating a form that emails the results to you. Tutorial: Creating a form that emails the results to you. 1. Create a new page in your web site Using the Wizard Interface. a) Choose I want to add a form that emails the results to me in the wizard. b)

More information

10 Excel Tips To Make Your Business More Productive

10 Excel Tips To Make Your Business More Productive 10 Excel Tips To Make Your Business More Productive Welcome to Filtered. We are an online education provider of tailored training in Microsoft's main applications. We teach the features of each discipline

More information

To reuse a template that you ve recently used, click Recent Templates, click the template that you want, and then click Create.

To reuse a template that you ve recently used, click Recent Templates, click the template that you want, and then click Create. What is Excel? Applies to: Excel 2010 Excel is a spreadsheet program in the Microsoft Office system. You can use Excel to create and format workbooks (a collection of spreadsheets) in order to analyze

More information