LOGO COL MATHEMATICAL MODELING with DATA. Instructor: Paul S. Lowman

Size: px
Start display at page:

Download "LOGO COL MATHEMATICAL MODELING with DATA. Instructor: Paul S. Lowman"

Transcription

1 LOGO COL MATHEMATICAL MODELING with DATA Instructor: Paul S. Lowman

2 UNIT 2 LESSON 6 LOGICAL FUNCTIONS

3 LOGICAL FUNCTIONS: TOPICS In this lesson you will use logical spreadsheet functions to obtain information from a data set based on given conditions IF function Nested IF function COUNTIF COUNTIF(S) SUMIF SUMIF(S)

4 LOGICAL FUNCTIONS: IF A simple IF func(on has the following form if there are only two outcomes (answers) to a given situa?on. =IF(logical condi(on,"value if True","Value if False") For example : You either pass or fail a course. You are either married or not married and so on.

5 LOGICAL FUNCTIONS: IF =IF (D2>50, Pass, Fail )

6 LOGICAL FUNCTIONS: IF HANDS ON EXERCISE Use CloudOn to create an excel spreadsheet name L6HOE. Rename sheet 1 to EXERCISE 1 STEPS: 1. IN CELL A1 TYPE THE NUMBER IN CELL B1 TYPE THE FUNCTION = IF(A1>50, YES, NO ) 3. CHANGE THE NUMBER IN CELL A1 TO WHAT VALUE DID YOU GET?

7 LOGICAL FUNCTIONS: IF HANDS ON EXERCISE If you did this correctly you should get a "Yes". When you change the 80 to a 25 you should get a "No. If the Value of True or False is text, then you must put the text in quotes. However, if the Value of True or False is a number or a formula then you do not use quotes.

8 LOGICAL FUNCTIONS: NESTED IF When there is more than two choices in an IF statement, you must create what is known as a Nested IF This means using another IF when you get to the "value if false" part of the func?on and you have more than one choice. The number of IFs you need is always equal to the number of outcomes (answers) minus one.

9 LOGICAL FUNCTIONS: NESTED IF Here is a general form when there are three outcomes. =IF(logical condi(on,"value if True",IF(logical condi(on,"value if True","Value if False"))

10 LOGICAL FUNCTIONS: NESTED IF For example, deduc?ons from an employee's income usually depends on employee income. The higher the income, the higher the deduc?on rate. We can use an IF func?on to determine what the deduc?on rate will be.

11 LOGICAL FUNCTIONS: NESTED IF For this example, if employee income is: less than $29,701, the deduc?on rate is 15% greater than or equal to $29,701, but less than $71,950, the deduc?on rate is 25% greater than or equal to $71,950, the deduc?on rate is 28%

12 LOGICAL FUNCTIONS: NESTED IF For this example, if employee income is: The first deduc?on rate is handled by the logic test and the value if true argument of the first IF func?on. To do this, we write the beginning of the IF func?on as: =IF(A5 < 29701, A5*15%,)

13 LOGICAL FUNCTIONS: NESTED IF To add the second and third deduc?on levels, we nest one IF func?on inside another. For example: =IF(A5<29701,A5*15%,IF(A5<71950,A5*25%,A5*28 %))

14 LOGICAL FUNCTIONS: NESTED IF The logic test of the Nested IF func?on, checks to see if a employee s income is greater than or equal to $29,701, but less than $71,950. If it is, the deduc?on rate is 25%. If the income is greater than or equal to $71,950, the deduc?on rate is 28%. Addi?onal rate changes could be added another nested IF func?ons inside the exis?ng func?on.

15 LOGICAL FUNCTIONS: NESTED IF HANDS ON EXERCISE Use the CloudOn spreadsheet name L6HOE. Rename sheet 2 to EXERCISE 2 STEPS: 1. In Cell A1 type the number Type the following function in Cell B1 =IF(A1 < 29701, A1*15%) 3. In Cell A2 type the number then copy the function from B1 to B2 4. In Cell A3 type the number then type the function =IF(A3 < 29701, A3*15%,) Please note the comma before closing the brackets

16 LOGICAL FUNCTIONS: NESTED IF HANDS ON EXERCISE Use the CloudOn spreadsheet name L6HOE. Rename sheet 2 to EXERCISE 2 STEPS: 4. In Cell A4 type the number Type the following function in Cell B4 =IF(A4 < 29701, A4*15%,IF(A4<71950,A4*25%,A4*28%)) 6. Change the value in A4 to then to then to ANSWERS: 4455 which is 15% of which is 25% of which is 28% of 72000

17 Condi(onal IF func(ons: THE FOLLOWING IF FUNCTIONS ARE VERY USEFUL FOR FINDING THE COUNT AND SUM OF A LARGE TABLE USING SPECIFIED CONDITIONS

18 COUNTIF COUNTIF The COUNTIF func?on is used to count up the number of cells in a selected range that meet specified criteria. Syntax =COUNTIF (Range, Criteria)

19 COUNTIF Syntax =COUNTIF (Range, Criteria) Range - the group of cells the func?on is to search. Criteria - determines whether the cell is to be counted or not. This can be a number,expression. or text string.

20 COUNTIF Syntax =COUNTIF (Range, Criteria) Criteria - this value is compared with the data in the Range cells. If a match is found then the cell in the Range is counted. Actual data or the cell reference to the data can be entered for this argument.

21 COUNTIF Syntax =COUNTIF (Range, Criteria)

22 COUNTIF HANDS ON EXERCISE Download U2L6ICPA2 from Blackboard. Use it to to complete this exercise Steps: 1. In Cell A14 Type 40 Points and Above 2. In Cell B14 =COUNTIF(B2:B11,40)

23 COUNTIFS COUNTIFS Counts the number of cells within a range that meet mul?ple criteria. Syntax COUNTIFS(range1, criteria1,range2, criteria2 )

24 COUNTIFS COUNTIFS Range1, range2, are 1 to 127 ranges in which to evaluate the associated criteria. Cells in each range must be numbers or names, arrays, or references that contain numbers. Blank and text values are ignored.

25 COUNTIFS COUNTIFS Criteria1, criteria2, are 1 to 127 criteria in the form of a number, expression, cell reference, or text that define which cells will be counted. For example, criteria can be expressed as 32, "32", ">32", "apples", or B4.

26 COUNTIFS COUNTIFS Remarks Each cell in a range is counted only if all of the corresponding criteria specified are true for that cell. If criteria is an empty cell, COUNTIFS treats it as a 0 value.

27 COUNTIFS COUNTIFS Remarks You can use the wildcard characters: ques?on mark (?) and asterisk (*), in criteria. A ques?on mark matches any single character; an asterisk matches any sequence of characters. If you want to find an actual ques?on mark or asterisk, type a?lde (~) before the character.

28 COUNTIFS COUNTIFS

29 COUNTIFS DEMO - EXCEL

30 SUMIF SUMIF SUMIF calculates the sum of mul?ple data/entries based on desired condi?on. As name implies, it sums- up the data if the criteria is met.

31 SUMIF It takes three arguments in which we need to select range of data, criteria,and sum_range to find out the desired result. Syntax SUMIF(range, criteria, sum_range)

32 SUMIF For Instance: We have a worksheet containing customer records with fields; Names, Items, Price and Paid?. In the worksheet: D2:D11 contains keywords Yes and No that show that whether customer paid the amount or s?ll owes C2:C11 contains Price of the corresponding product.

33 SUMIF

34 SUMIF To find how much amount the customer s?ll owes, the formula will search No in Paid? Column =SUMIF(D2:D11, No, C2:C11) The sum of the amount owed by customers: The formula adds up the value Price in the range C2:C11 for every instance of NO in the range D2:D11

35 SUMIF

36 SUMIFS SUMIFS Adds the cells in a range that meet mul?ple criteria. Important: The order of arguments is different between SUMIFS and SUMIF. In par?cular, the sum_range argument is the first argument in SUMIFS, However, the sum_range argument is the third argument in SUMIF. If you are copying and edi?ng these similar func?ons, make sure you put the arguments in the correct order.

37 SUMIFS Syntax SUMIFS(sum_range,criteria_range1,criteria1,criteria _range2,criteria2 ) Sum_range is one or more cells to sum: including numbers or names, arrays, or references that contain numbers. Blank and text values are ignored.

38 SUMIFS Syntax SUMIFS(sum_range,criteria_range1,criteria1,criteria _range2,criteria2 ) Criteria_range1, Criteria_range2, are 1 to 127 ranges in which to evaluate the associated criteria.

39 SUMIFS Syntax SUMIFS(sum_range,criteria_range1,criteria1,criteria _range2,criteria2 ) Criteria1, criteria2, are 1 to 127 criteria: in the form of a number, expression, cell reference, or text that define which cells will be added. For example, criteria can be expressed as 32, "32", ">32", "apples", or B4.

40 SUMIFS Remarks Each cell in sum_range is summed only if all of the corresponding criteria specified are true for that cell. Cells in sum_range that contain TRUE evaluate as 1 Cells in sum_range that contain FALSE evaluate as 0 (zero).

41 SUMIFS Remarks Unlike the range and criteria arguments in the SUMIF func?on, in SUMIFS each criteria_range must be the same size and shape as sum_range. You can use the wildcard characters, ques?on mark (?) and asterisk (*), in criteria. A ques?on mark matches any single character; An asterisk matches any sequence of characters. If you want to find an actual ques?on mark or asterisk, type a?lde (~) before the character.

42 SUMIFS So, to get the sum of all the spit bombs sold in North, we just write, =SUMIFS(D3:D16,B3:B16, Spit Bomb,C3:C16, North )

43 SUMIFS Similarly to find the podgun sales in East, just write,

44 SUMIFS DEMO - EXCEL

45 * Wildcard What say you wanted to count the number of cells containing the word apple in this table. You could simply use a wildcard (an asterisk, *, is a wildcard in Excel) in your COUNTIF FORMULA: =COUNTIF(A5:A9, *apples* ) Your result will be 4.

46 * Wildcard using Cell Ref No?ce that the wildcard search is not case sensi?ve and it will count any instance of the word, even where it s not a word on its own like in the case of Pineapples. Alterna?vely, if you wanted to reference a cell instead of typing in the word apples your formula would be: =COUNTIF(A5:A9, * &A1& * ) Where cell A1 contains the word apples

47 * Wildcard =SUMIF(A17:A21, *apples*,b17:b21)

48 WILDCARDS The asterisk we ve used already allows you to search for a string of text, but if you only want to search for one variable you can use the ques?on mark wild card like this:

49 ? Wildcard =COUNTIF(G10:G13, apple? ) gives a result of 3. No?ce it will find words ending in s like apples but won t find apple because the? is a place holder for another character.

50 ~ Wildcard The?lde wild card allows you to search for words that contain a wild card either * or?. Simply placing the?lde before the asterisk tells Excel that the asterisk is not to be used as a wildcard.

51 ~ Wildcard =COUNTIF(A5:A9, *~*apples* ) gives a result of 1

52 LOGO Your company slogan in here

Excel Tip: How to sum a column based on multiple conditions or criteria in other columns

Excel Tip: How to sum a column based on multiple conditions or criteria in other columns Excel Tip: How to sum a column based on multiple conditions or criteria in other columns Submitted by Jess on Mon, 02/24/2014-00:50 Have you ever wanted to sum a column of values but want to do it only

More information

Introduction to COUNT Formulas for Excel 2010

Introduction to COUNT Formulas for Excel 2010 The COUNT formula comes in several forms: COUNT: COUNTA: COUNTBLANK: COUNTIF: Count Cells with Numbers - - COUNT Introduction to COUNT Formulas for Excel 2010 Counts the number of cells containing numbers,

More information

Excel Formulas Cheat Sheet

Excel Formulas Cheat Sheet Basic Formulas AVERAGE =AVERAGE(A2:A10) Returns a mathematical average of a given cell range COUNT =COUNT(A2:A10) Returns the count of the numbers in given cell range MAX =MAX(A2:A10) Finds the largest

More information

Functions are predefined formulas that perform calculations by using specific values, called arguments, in a particular order, or structure.

Functions are predefined formulas that perform calculations by using specific values, called arguments, in a particular order, or structure. MATHS AND STATISTICAL FUNCTIONS Functions are predefined formulas that perform calculations by using specific values, called arguments, in a particular order, or structure. For example, the SUM function

More information

2. To select a range of individual cells, hold down CTRL and click on each cell that you want to include in the range.

2. To select a range of individual cells, hold down CTRL and click on each cell that you want to include in the range. What is Excel? Microsoft Excel is one of the most used spreadsheet software applications of all time. Hundreds of millions of people around the world use Microsoft Excel. You can use Excel to enter all

More information

Using Advanced Formulas and 9 Securing Workbooks

Using Advanced Formulas and 9 Securing Workbooks Using Advanced Formulas and 9 Securing Workbooks LESSON SKILL MATRIX Skill Exam Objective Objective Number Using Formulas to Conditionally Use a series of conditional 5.4.3 Summarize Data logic values

More information

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

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

More information

Using Advanced Formulas

Using Advanced Formulas 10 Using Advanced Formulas LESSON SKILL MATRIX Skills Exam Objective Objective Number Using Formulas to Conditionally Summarize Data Adding Conditional Logic Functions to Formulas Using Formulas to Modify

More information

10 Ways To Efficiently Analyze Your Accounting Data in Excel

10 Ways To Efficiently Analyze Your Accounting Data in Excel 10 Ways To Efficiently Analyze Your Accounting Data in Excel Live Demonstration Investment advisory services are offered through CliftonLarsonAllen Wealth Advisors, LLC, an SEC-registered investment advisor.

More information

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

Returns the value of a specified cell or array of cells within an array.

Returns the value of a specified cell or array of cells within an array. Microsoft Excel 2013 Functions to Retrieve Data VLookup Index Match SumProduct SumIf and SumIfs Searches for a value in the leftmost column of a table, and then returns a value in the same row from a column

More information

MICROSOFT EXCEL 2000 LEVEL 3

MICROSOFT EXCEL 2000 LEVEL 3 MICROSOFT EXCEL 2000 LEVEL 3 WWP Training Limited Page 1 STUDENT EDITION LESSON 1 - USING LOGICAL, LOOKUP AND ROUND FUNCTIONS... 7 Using the IF Function... 8 Using Nested IF Functions... 10 Using an AND

More information

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

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

More information

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

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

More information

Lesson 3: Logic and Reference Functions

Lesson 3: Logic and Reference Functions Lesson 3: Logic and Reference Functions This Video Excel Educator - Looking Back Lesson 1 Excel Basics Lesson 2 Formulas and Functions Excel Educator - Looking Ahead Lesson 3 - Logic & Reference Functions

More information

Excel 2007: Functions and Forumlas Learning Guide

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

More information

Excel Forecasting Tools Review

Excel Forecasting Tools Review Excel Forecasting Tools Review Duke MBA Computer Preparation Excel Forecasting Tools Review Focus The focus of this assignment is on four Excel 2003 forecasting tools: The Data Table, the Scenario Manager,

More information

Excel Expert Microsoft Excel 2010

Excel Expert Microsoft Excel 2010 Excel Expert Microsoft Excel 2010 Formulas & Functions Table of Contents Excel 2010 Formulas & Functions... 2 o Formula Basics... 2 o Order of Operation... 2 Conditional Formatting... 2 Cell Styles...

More information

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

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

More information

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

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

More information

Lesson 06. Excel Functions

Lesson 06. Excel Functions Lesson 06 Excel Functions Basic functions: SUM: Adds a range of cells together AVERAGE: Calculates the average of a range of cells COUNT: Counts the number of chosen data in a range of cells MAX: Identifies

More information

MICROSOFT EXCEL 2002 (XP): LEVEL 3

MICROSOFT EXCEL 2002 (XP): LEVEL 3 MICROSOFT EXCEL 2002 (XP): LEVEL 3 WWP Training Limited Page 1 STUDENT EDITION LESSON 1 - USING LOGICAL LOOKUP AND ROUND FUNCTIONS... 7 Using Lookup Functions... 8 Using the VLOOKUP Function... 8 Using

More information

ARTT BUSINESS SCHOOL INTRODUCTION TO INFORMATION TECHNOLOGY

ARTT BUSINESS SCHOOL INTRODUCTION TO INFORMATION TECHNOLOGY Excel TODAY Function Get the current date A serial number representing a particular date in Excel. =TODAY () TODAY takes no parameters, but required that you use empty parentheses (). The value returned

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

BASIC EXCEL WORKSHOP 2017

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

More information

The SUM function: P. 251 Use a sum for a formula when you are trying to ADD different data (in a row or column) together.

The SUM function: P. 251 Use a sum for a formula when you are trying to ADD different data (in a row or column) together. REVIEW PACKET FOR FUNCTIONS AND FORMULAS The SUM function: P. 251 Use a sum for a formula when you are trying to ADD different data (in a row or column) together. A B C D 1 8 4 3 15 2 6 7 2 15 3 5 1 9

More information

MICROSOFT EXCEL 2003 LEVEL 3

MICROSOFT EXCEL 2003 LEVEL 3 MICROSOFT EXCEL 2003 LEVEL 3 WWP Training Limited Page 1 STUDENT EDITION LESSON 1 - USING LOGICAL, LOOKUP AND ROUND FUNCTIONS... 7 Using Lookup Functions... 8 Using the VLOOKUP Function... 8 Using the

More information

Excel Foundation (Step 2)

Excel Foundation (Step 2) Excel 2007 Foundation (Step 2) Table of Contents Working with Names... 3 Default Names... 3 Naming Rules... 3 Creating a Name... 4 Defining Names... 4 Creating Multiple Names... 5 Selecting Names... 5

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

ADDITIONAL EXCEL FUNCTIONS

ADDITIONAL EXCEL FUNCTIONS ADDITIONAL EXCEL FUNCTIONS The following notes and exercises on additional Excel functions are based on the Grade 12 Examination Guidelines for 2016 recently issued by the DBE. As such, they represent

More information

Lecture-14 Lookup Functions

Lecture-14 Lookup Functions Lecture-14 Lookup Functions How do I write a formula to compute tax rates based on income? Given a product ID, how can I look up the product s price? Suppose that a product s price changes over time. I

More information

Excel Training Guide. TeachFirst Conference 28 th January 2017

Excel Training Guide. TeachFirst Conference 28 th January 2017 Excel Training Guide TeachFirst Conference 28 th January 2017 Introduction & Contents This guide has been produced to supplement the training course. It provides pictorial guidance on how to perform a

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

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited INTERMEDIATE MICROSOFT EXCEL 2016 Intermediate Microsoft Excel 2016 (EXC2016.2 version 1.0.1) Copyright Information Copyright 2016 Webucator. All rights reserved. The Authors Dave Dunn Dave Dunn joined

More information

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

Row 1 is called the header row which contains all the field names. Records start in row 2.

Row 1 is called the header row which contains all the field names. Records start in row 2. Excel: Lists Familiarity with basic Excel is required for this class. Learn to create field names, sort lists, and link worksheets. You'll learn lists that can also be used in our Word: Mail Merge class.

More information

Lab Manual Excel Module

Lab Manual Excel Module Lab Manual Excel Module Lab 3: Conditionals and Lookup Tables Conditional functions One very useful set of built-in functions in Excel is conditional functions. As the name implies, these perform certain

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

MICROSOFT EXCEL VERSION 2007 & 2010 LEVEL 4. WWP Learning and Development Ltd Page 1

MICROSOFT EXCEL VERSION 2007 & 2010 LEVEL 4. WWP Learning and Development Ltd Page 1 MICROSOFT EXCEL VERSION 2007 & 2010 LEVEL 4 WWP Learning and Development Ltd Page 1 NOTE Unless otherwise stated, screenshots in this book were taken using Excel 2007 with a blue colour scheme and running

More information

Excel Formulas 2018 Cindy Kredo Page 1 of 23

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

More information

VLOOKUP vs. SUMIFS. Battle of the Excel Heavyweights. made with

VLOOKUP vs. SUMIFS. Battle of the Excel Heavyweights. made with VLOOKUP vs. SUMIFS Battle of the Excel Heavyweights made with Table of Contents 1. What do we mean by Battle? 2. VLOOKUP: Range Lookups 3. SUMIFS: Overview 4. Multi-Column Lookup with VLOOKUP and SUMIFS

More information

AGB 260: Agribusiness Data Literacy. Advanced Functions and Logic

AGB 260: Agribusiness Data Literacy. Advanced Functions and Logic AGB 260: Agribusiness Data Literacy Advanced Functions and Logic Useful Chapters in the Textbook Regarding this Lecture Chapter 11 Chapter 13 Chapter 14 Some of the other functions in this chapter are

More information

DOWNLOAD PDF MICROSOFT EXCEL ALL FORMULAS LIST WITH EXAMPLES

DOWNLOAD PDF MICROSOFT EXCEL ALL FORMULAS LIST WITH EXAMPLES Chapter 1 : Examples of commonly used formulas - Office Support A collection of useful Excel formulas for sums and counts, dates and times, text manipularion, conditional formatting, percentages, Excel

More information

Microsoft Excel. Part 2: Calculations & Functions. Department of Computer Science Faculty of Science Chiang Mai University

Microsoft Excel. Part 2: Calculations & Functions. Department of Computer Science Faculty of Science Chiang Mai University Microsoft Excel Part 2: Calculations & Functions Department of Computer Science Faculty of Science Chiang Mai University Outlines 1. Creating you own formula 2. Using functions in Excel 3. Using cell references

More information

FV Function Example Word Problem 1:

FV Function Example Word Problem 1: FV Function The FV Function calculates the future value of an investment, given a fixed interest rate, term, and periodic payment. You can use the FV Function to determine how much money you would have

More information

Excel Reports: Formulas or PivotTables

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

More information

Basic Math in Microsoft Excel

Basic Math in Microsoft Excel Chapter 1 Basic Math in Microsoft Excel In this chapter, we will learn the following to World Class standards: The Excel Layout The Ribbon in Excel Adding in Excel Subtracting in Excel Multiplying in Excel

More information

Excel Comics. Why read boring ebooks! Volume 1. Page 1 of 21

Excel Comics. Why read boring ebooks! Volume 1. Page 1 of 21 Excel Comics Why read boring ebooks! Volume 1 Page 1 of 21 Contents 1) VLOOKUP lifeblood of an Excel user!... 3 2) Battle of Nested IFs vs. VLOOKUP with TRUE (or 1) Who wins?... 4 3) 2-D VLOOKUP will give

More information

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

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

More information

Skill Set 5. Outlines and Complex Functions

Skill Set 5. Outlines and Complex Functions Spreadsheet Software OCR Level 3 ITQ Skill Set 5 Outlines and Complex Functions By the end of this Skill Set you should be able to: Create an Outline Work with an Outline Create Automatic Subtotals Use

More information

Formulas and Functions

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

More information

MICROSOFT EXCEL VERSIONS 2007 & 2010 LEVEL 3. WWP Learning and Development Ltd Page 1

MICROSOFT EXCEL VERSIONS 2007 & 2010 LEVEL 3. WWP Learning and Development Ltd Page 1 MICROSOFT EXCEL VERSIONS 2007 & 2010 LEVEL 3 WWP Learning and Development Ltd Page 1 NOTE Unless otherwise stated, screenshots in this book were taken using Excel 2007 with a silver colour scheme and running

More information

Though we re focusing on the newest version of Excel, most of what is covered applies to the other types of spreadsheets discussed in chapter four.

Though we re focusing on the newest version of Excel, most of what is covered applies to the other types of spreadsheets discussed in chapter four. Chapter 4 Working with Specialized Functions and Formulas in Excel In this tutorial, we will tackle the basic and most useful string functions journalists use when performing a variety of tasks such as

More information

Unit 3. Operators. School of Science and Technology INTRODUCTION

Unit 3. Operators. School of Science and Technology INTRODUCTION INTRODUCTION Operators Unit 3 In the previous units (unit 1 and 2) you have learned about the basics of computer programming, different data types, constants, keywords and basic structure of a C program.

More information

Excel Formulas and Functions

Excel Formulas and Functions Excel Formulas and Functions Formulas Relative cell references Absolute cell references Mixed cell references Naming a cell or range Naming constants Dates and times Natural-language formulas Functions

More information

Basic tasks in Excel 2013

Basic tasks in Excel 2013 Basic tasks in Excel 2013 Excel is an incredibly powerful tool for getting meaning out of vast amounts of data. But it also works really well for simple calculations and tracking almost any kind of information.

More information

Simulations How To for Fathom

Simulations How To for Fathom Simulations How To for Fathom. Start by grabbing a collection box (the picture of a treasure box) and drop it on your screen. You can double click on the word collection to rename it. 2. Click on your

More information

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

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

More information

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

Chapter 2: Solving Problems with Statistical Analysis Tools

Chapter 2: Solving Problems with Statistical Analysis Tools Chapter 2: Solving Problems with Statistical Analysis Tools TRUE/FALSE 1. Microsoft Excel provides a variety of predefined functions, including statistical functions, that you can use to determine such

More information

Excel 2016: Formulas & Functions

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

More information

EXCEL walkthrough. It is from May 2012, Paper 3 Practical Test 0417/32. It is available on the OLIE under the past papers section.

EXCEL walkthrough. It is from May 2012, Paper 3 Practical Test 0417/32. It is available on the OLIE under the past papers section. EXCEL walkthrough This is a walkthrough for a fairly straightforward past paper. However, if you have done one then the rest are pretty straight forward. It is from May 2012, Paper 3 Practical Test 0417/32

More information

Excel 2016 Functions

Excel 2016 Functions Flash Fill New in Office 2013 is a feature called Flash fill. Flash fill will help you fill in empty cells within a spreadsheet based on patterns that already exist. You may need to provide a couple of

More information

B&E 105: TECHNOLOGY FOR BUSINESS SOLUTIONS EXAM 5 CHECKLIST & OUTLINE

B&E 105: TECHNOLOGY FOR BUSINESS SOLUTIONS EXAM 5 CHECKLIST & OUTLINE B&E 105: TECHNOLOGY FOR BUSINESS SOLUTIONS EXAM 5 CHECKLIST & OUTLINE Strategy for doing well: Work along with the videos, filling out your Excel file(s) step by step. Do this until you can comfortably

More information

CSE 123 Introduction to Computing

CSE 123 Introduction to Computing CSE 123 Introduction to Computing Lecture 2 Creating Charts with Excel and Working with Formulas and Functions SPRING 2012 Assist. Prof. A. Evren Tugtas Course notes have been prepared using some of the

More information

Arrays: A Powerful Excel Tool

Arrays: A Powerful Excel Tool Arrays: A Powerful Excel Tool Publication Date: January 2015 Arrays: A Powerful Excel Tool Copyright 2015 by Mill Creek Publishing P.O. Box 11, Zionsville, IN 46077 All rights reserved. No part of this

More information

Open Learning Guide. Microsoft Excel Introductory. Release OL356v1

Open Learning Guide. Microsoft Excel Introductory. Release OL356v1 Guide Microsoft Excel 2013 Introductory Note: Microsoft, Excel and Windows are registered trademarks of the Microsoft Corporation. Release OL356v1 Contents SECTION 1 FUNDAMENTALS... 9 1 - SPREADSHEET PRINCIPLES...

More information

Skill Set 3. Formulas

Skill Set 3. Formulas Skill Set 3 Formulas By the end of this Skill Set you should be able to: Create Simple Formulas Understand Totals and Subtotals Use Brackets Select Cells with the Mouse to Create Formulas Calculate Percentages

More information

Index Page 1 of 10. Index test size A6. Background. Page 2. Page 3

Index Page 1 of 10. Index test size A6. Background. Page 2. Page 3 Index Page 1 of 10 Index test size A6 Background Page 2 Page 3 Index Page 2 of 10 Assignment 1 Fast Technologies: Background: Fast Technologies[1] (is a manufacturer of solid-state drives (SSD) for desktop

More information

Index Page 1 of 13. Index test size A6. Background. Page 2. Page 3

Index Page 1 of 13. Index test size A6. Background. Page 2. Page 3 Index Page 1 of 13 Index test size A6 Background Page 2 Page 3 Index Page 2 of 13 Assignment 1 Background: Fast Technologies: Fast Technologies[1] (is a manufacturer of solidstate drives (SSD) for desktop

More information

M ic ro s Of. Excel. 4.9/5.0 rating from ProCert Labs. AdvAnced

M ic ro s Of. Excel. 4.9/5.0 rating from ProCert Labs. AdvAnced M ic ro s Of 2007 t Of f ic E Excel 4.9/5.0 rating from ProCert Labs AdvAnced Excel 2007: Advanced Student Manual MCAS Edition Excel 2007: Advanced Chief Executive Officer, Axzo Press: Series Designer

More information

Getting Started. i-net Designer

Getting Started. i-net Designer i-net Designer 1 Introduction to i-net Designer... 2 2 Obtaining and installing i-net Designer... 3 2.1 Where to find i-net Clear Reports and i-net Designer... 3 2.2 System Requirements... 3 2.3 Installing

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

Module 5 - SUMPRODUCT Theory - 1

Module 5 - SUMPRODUCT Theory - 1 Module 5 - SUMPRODUCT Theory TOPICS COVERED: 1) Conjunction Truth Table (0:42) 2) Using the SUM Function to Count Records (2:20) 3) SUMPRODUCT Can Do the Same Thing (6:01) 4) Sumproduct Multiplication

More information

Pivot Table Project. Objectives. By the end of this lesson, you will be able to:

Pivot Table Project. Objectives. By the end of this lesson, you will be able to: Pivot Table Project Objectives By the end of this lesson, you will be able to: Set up a Worksheet Enter Labels and Values Use Sum and IF functions Format and align cells Change column width Use AutoFill

More information

Excel Cheat Sheet. Keyboard short cuts. Absolute or relative

Excel Cheat Sheet. Keyboard short cuts. Absolute or relative Useful Excel tps Page 1 Excel Cheat Sheet 08 June 2015 13:10 Keyboard short cuts Absolute or relative When typing a formula, or editing one, the F4 key will make it either an absolute or relative reference.

More information

Table of contents. Excel in English. Important information LAYOUT. Format Painter. Format Painter. Fix columns. Fix columns.

Table of contents. Excel in English. Important information LAYOUT. Format Painter. Format Painter. Fix columns. Fix columns. Table of contents 1. Excel in English 2. Important information 3. LAYOUT 4. Format Painter 5. Format Painter 6. Fix columns 7. Fix columns 8. Create a grid 9. Create a grid 10. Create a numeric sequence

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

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

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

More information

Section 3. Topics Covered

Section 3. Topics Covered Section 3 Topics Covered " Calculating using formulas... 3-2 " Copying formulas... 3-7 " Using absolute cell addresses... 3-13 " Calculating results using AutoCalculate... 3-18# " Using functions... 3-21

More information

Excel Tips. Contents. By Dick Evans

Excel Tips. Contents. By Dick Evans Excel Tips By Dick Evans Contents Pasting Data into an Excel Worksheet... 2 Divide by Zero Errors... 2 Creating a Dropdown List... 2 Using the Built In Dropdown List... 3 Entering Data with Forms... 4

More information

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

Microsoft Excel 2016 LEVEL 3

Microsoft Excel 2016 LEVEL 3 TECH TUTOR ONE-ON-ONE COMPUTER HELP COMPUTER CLASSES Microsoft Excel 2016 LEVEL 3 kcls.org/techtutor Microsoft Excel 2016 Level 3 Manual Rev 11/2017 instruction@kcls.org Microsoft Excel 2016 Level 3 Welcome

More information

Using Formulas and Functions

Using Formulas and Functions Using Formulas and Functions Formulas... 1 Using operators in formulas... 1 Creating formulas... 2 Good Practice: The easy way to create formulas... 2 Copying formulas... 3 Operators... 3 Formula error

More information

Downloading other workbooks All our workbooks can be downloaded from:

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

More information

=AVERAGE(Al:A10) gives the average of all the numbers in the cells from Al to A10 inclusive.

=AVERAGE(Al:A10) gives the average of all the numbers in the cells from Al to A10 inclusive. What is a function? A function is simply a specialised calculation that Excel has memorised. There are many functions (around 200) built into Excel and they can do lots of different things. In this chapter

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

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

Mathematical Operators for Excel

Mathematical Operators for Excel EXCEL ADVANCED 1 Mathematical Operators for Excel < > = >=

More information

SBCUSD IT Training Program. MS Excel ll. Fill Downs, Sorting, Functions, and More

SBCUSD IT Training Program. MS Excel ll. Fill Downs, Sorting, Functions, and More SBCUSD IT Training Program MS Excel ll Fill Downs, Sorting, Functions, and More Revised 4/16/2019 TABLE OF CONTENTS Number Formats...4 Auto Fill and Flash Fill...5 Simple Repeat...5 Fill Down Common Series...5

More information

CIS 100 Databases in Excel Creating, Sorting, Querying a Table and Nesting Functions

CIS 100 Databases in Excel Creating, Sorting, Querying a Table and Nesting Functions CIS 100 Databases in Excel Creating, Sorting, Querying a Table and Nesting Functions Objectives Create and manipulate a table Deleting duplicate records Delete sheets in a workbook Add calculated columns

More information

M i c r o s o f t E x c e l A d v a n c e d. Microsoft Excel 2010 Advanced

M i c r o s o f t E x c e l A d v a n c e d. Microsoft Excel 2010 Advanced Microsoft Excel 2010 Advanced 0 Working with Rows, Columns, Formulas and Charts Formulas A formula is an equation that performs a calculation. Like a calculator, Excel can execute formulas that add, subtract,

More information

Excel Intermediate

Excel Intermediate Excel 2013 - Intermediate (103-124) Advanced Functions Quick Links Range Names Pages EX394 EX407 Data Validation Pages EX410 EX419 VLOOKUP Pages EX176 EX179 EX489 EX500 IF Pages EX172 EX176 EX466 EX489

More information

Using Basic Formulas 4

Using Basic Formulas 4 Using Basic Formulas 4 LESSON SKILL MATRIX Skills Exam Objective Objective Number Understanding and Displaying Formulas Display formulas. 1.4.8 Using Cell References in Formulas Insert references. 4.1.1

More information

Prepared By: Graeme Hilson. U3A Nunawading

Prepared By: Graeme Hilson. U3A Nunawading 0 Prepared By: Graeme Hilson U3A Nunawading - 2015 1 CONTENTS This Course Page 3 Reference Material Page 3 Introduction page 3 Microsoft Excel Page 3 What is a Spreadsheet Page 4 Excel Screen Page 4 Using

More information

relative Copy select the destination cell(s) Paste

relative Copy select the destination cell(s) Paste Cell references A cell reference is the letter of the column followed by the number of the row where the cell is located. Example: A2, B5. There are several default assumptions made by Excel when you enter

More information

Using Microsoft Excel

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

More information

Excel 2016 Functions

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

More information

Business Data Analysis MA0123. Dr Gavin Shaddick Department of Mathematical Sciences 4W 5.7

Business Data Analysis MA0123. Dr Gavin Shaddick Department of Mathematical Sciences 4W 5.7 Business Data Analysis MA0123 Dr Gavin Shaddick Department of Mathematical Sciences g.shaddick@bath.ac.uk 4W 5.7 Lectures and computer labs Two lectures a week (Monday and Friday). One computing lab (time

More information

Excel Part 3 Textbook Addendum

Excel Part 3 Textbook Addendum Excel Part 3 Textbook Addendum 1. Lesson 1 Activity 1-1 Creating Links Data Alert and Alternatives After completing Activity 1-1, you will have created links in individual cells that point to data on other

More information