As you might expect, you can test of equality or non-equality using standard mathematical formulas:

Size: px
Start display at page:

Download "As you might expect, you can test of equality or non-equality using standard mathematical formulas:"

Transcription

1 Logic Functions Despite the fact that the set of logic functions is one of the smallest function collections in Excel, it is definitely one of the most important. The reason for this is quite simple: it is this set of functions that allows us to make our spreadsheets react differently depending on certain outcomes. Without these functions we would only be able to report on historical data or build static scenarios. By leveraging logic functions we can turn our spreadsheets into powerful decision matrices and business intelligence tools. How Do Logic Functions Work? Before you can dive into logic functions, it is helpful to understand what they do and how they work, so let s take a look at the underlying logic behind a logic function. Scenario Testing The primary goal of logic functions in Excel is answering if a provided scenario is TRUE or FALSE. If you think back to your high school science class, you would have spent a lot of time on hypothesis testing. Essentially, that is what a basic logic function does. As an example, open up a blank spreadsheet and enter the following in cell A1: =B1=10 Excel will evaluate that and return the value FALSE. Why? Well, B1 starts with an = making it a formula. And the remaining portion is the portion of the formula that you want evaluated. Since B1 is empty it doesn t equal 10, and Excel therefore returns FALSE as a result. Now, type 10 into B1 and you ll see that A1 returns TRUE. As you might expect, you can test of equality or non-equality using standard mathematical formulas: Formula Hypothesis Being Tested =B1=10 Is B1 equal to 10? =B1>10 Is B1 greater than 10? =B1>=10 Is B1 greater than or equal to 10? =B1<10 Is B1 less than 10? =B1<=10 Is B1 less than or equal to 10? =B1<>10 Is B1 not equal to 10? You can also use cell references in place of the values as well, to drive scenarios that are far more complex. 1

2 Reacting to TRUE/FALSE Statements The secondary goal of logic functions is to be able to use these TRUE/FALSE results and react differently depending on which you have. By this means we can have Excel do one thing if the test is TRUE, and something completely different if the test is FALSE. Logic is used extensively throughout Excel. Some areas you ll find it used are: Formulas that you write to do things dependent on certain scenarios Conditional formats which format cells where certain (user defined) rules are met Inside certain function parameters (which you ll see by the end of this course) Three Commonly Used Logic Functions Now that you understand the basic purpose of logic in Excel and the underlying theory behind it, we ll look at some of the most commonly used functions in the logic arena. =AND() The AND() function is used in a formula to test multiple hypothesis that you supply. It will test each supplied hypothesis and, if every single provided hypothesis is met, this function will return TRUE. The syntax for this function is as follows: =AND(Logical1, [Logical2], ) The first parameter (Logical1) is a required logical test (like B1=10). The second parameter (Logical2) is surrounded by square brackets meaning that it is optional. The indicates that you can add more logical tests as well, should you need them. =OR() The OR() function is also used in a formula to test multiple hypothesis that you supply. Unlike AND(), however, OR() will test each supplied hypothesis and, if any one or more provided hypothesis is met, this function will return TRUE. The syntax for this function is as follows: =OR(Logical1, [Logical2], ) The first parameter (Logical1) is a required logical test (like B1=10). The second parameter (Logical2) is surrounded by square brackets meaning that it is optional. The indicates that you can add more logical tests as well, should you need them. =IF() The IF() function is by far the most powerful and commonly used of the logic function set. In this function, the author provides a hypothesis to be tested. In addition, the author also provides two more parameters for the function: what they would like to happen if the hypothesis is TRUE and what they would like to happen if the hypothesis is FALSE. 2

3 The syntax for this function is as follows: =IF(logical_test, [value_if_true], [value_if_false]) What this means, in English, is: Parameter Optional/ Required Details Default (if not provided) Logical_test Required The hypothesis you would like to test N/A Value_if_true Optional What you d like to happen if the test is TRUE TRUE Value_if_false Optional What you d like to happen if the test is FALSE FALSE So looking at our previous example, the following formula could be used to tell us something about the value in cell B1: =IF(B1=10,"B1 is equal to 10","B1 is not equal to 10!") The results of using this formula can be seen in Figure 1, shown below: Figure 1 Example 1 Rewarding Customer Loyalty Rather than ply on with more theory, let s take a look at a real-world example in which these formulas and functions might be used. Example Background In this example the Marketing department has approached us with an issue: they want to reward customer loyalty, but are having a hard time trying to build a program. They re looking for our help to evaluate some scenarios to see how they should construct the loyalty program. Specific things that the Marketing department want to accomplish: Reward number of visits. They feel repeat business is important and should lead to future purchases. Reward total dollars spent. Obviously this is the end game to reward! In addition they have decided that they have a budget of $12,500 that they can work with. So whatever program they look at needs to fit within that constraint. 3

4 They have helpfully provided us a list of customers, visits, and dollars spent by customer, which should be very helpful. So let s take a look and see what we can do. Open Example 1 Customer Mining.xlsx Example File Review Before we dive right in, let s take a look at what we are working with today. We have a listing of customer names in column A, customer visits in column B, as well as the total spend in column C. If we scroll down the sheet we see we have quite a bit of data here, 113 rows in fact. At the top of our sheet we see that someone has gone in and worked out what the lowest and highest customer spend are, as well as the lowest and highest number of customer visits. We also have a threshold given for what we are looking for: a $15,000 spend level and a minimum of 70 visits. If we click in cells F8:F10 we see that the formulas are already plumbed in for us. This will allow us to sum up the information that will go into the area under Revenues Where Criteria Meet Thresholds to come up with the total spend that meets the criteria of what we want. Cells F8:F10 contain a formula that will work out the total discount based on the total spend multiplied by 5%. This is great. A lot of the framework has been built for us to allow us to evaluate the proposed rebates once we ve plumbed in the logic portion. So now let s set about doing exactly that! Who Meets the Minimum Visit Threshold? The first thing we need to do is go through and determine whether or not the customer has met the minimum number of visits threshold. To do that we are going to select cell D14 and put in a simple logic formula to test if they have. To complete our goal, we need to determine if the number in cell B14 is greater than the threshold we have set in cell B5. The formula we want is: =B14>$B$5 The function will return TRUE, as shown in Figure 2, below: 4

5 Figure 2 Let s just check that out for a second. Adams has visited 73 times because this is greater than our 70- visit threshold the function returns TRUE. Great! That was our first logic formula, and it looks like it s working. Now, we have a lot of data here, so we want to be able to copy this formula down our sheet. Because we already created this with an absolute reference to cell B5 (the $ signs before the row and column mean it won t change as we copy it to other cells), we can just extend this formula down the table rows. To do so: Move your mouse to the bottom right corner of cell B14 until the cursor turns into a black + Double click the black + sign Figure 3 Because the column beside it has data to the end of the table, double clicking the Fill Handle (shown in Figure 3) will extend our formulas all the way to the end of the table, as shown in Figure 4: 5

6 Figure 4 To test it you can scan down the sheet, noting for example that cell D18 returns as FALSE with 58 records, and cell D19 returns as TRUE with 86 so our formula is working just fine. Who Meets the Customer Spend Levels? Now let s do a similar thing with the spend level. Here we will determine if a customer has spent more than the $15,000 threshold that has been set up in our spreadsheet. To set up the appropriate formula here: Select E14 Press = Click C14 Type > Click B4 Press the F4 key (to toggle from relative to absolute cell references) Press the Enter key It returns FALSE. This is correct as we can see that this Adams spend of $2, is not greater than our $15,000 threshold. 6

7 Once again, double click the fill handle (just like we did for our last column) to copy this formula all the way down our table so that it looks as shown in Figure 5: Figure 5 Let s do another quick scan, just to make sure this formula is working as we d expect. While most of the rows are showing FALSE, indicating that those customers spend levels are under the $15,000 threshold, F22 is showing TRUE. Looking at C22 we can see that it is definitely exceeding the spending level we re looking for, so the TRUE result displaying in F22 is absolutely correct. Gross Spends from Customers Who Meet the Visit Threshold So now we have worked out whether someone actually meets those thresholds. That doesn t help Marketing understand the effect on their planned loyalty program though. In the spreadsheet that Marketing provided, they already set up cells F8:F10 to summarize the total customer revenues for each scenario that they wish to evaluate. We need to calculate the total sales dollar value of those customers to feed them in to that matrix. So let s start by calculating the total dollars spent by customers who had more than 70 visits. This is where we start to put IF functions to work. What we want to get Excel to do here is put the total spend in cell F14 if D14 is TRUE. If D14 is FALSE, we want Excel to put in 0. If you recall from earlier, the syntax for the IF function is as follows: =IF(logical_test, [value_if_true], [value_if_false]) So logically speaking, we should be able to sub those portions into the formula as follows: =IF(D14=TRUE,C14,0) 7

8 Let s try that. Select F14 and start typing it in As you start typing TRUE you ll notice that the Intellisense pops up, indicating that there is a TRUE() function. This function doesn t take any arguments, and its only purpose is to evaluate to TRUE. But the rub is that you can t ignore those brackets and just put in TRUE, or Excel will return an error. So the modified formula you need to enter is: =IF(D14=TRUE(),C14,0) Upon committing this formula, you ll see that it returns $2, Cool! To see how this works, replace all the ranges in the function with the values in their cells, remembering that TRUE() returns TRUE (without the parenthesis): =IF(TRUE=TRUE, ,0) Excel then evaluates the test in the middle: =IF(TRUE, ,0) Since we ve asked to return if the test evaluates to TRUE, that is what we get back. Now here s a trick. We don t actually need to enter the =TRUE() portion of that function at all this will work equally well: Why is that? =IF(D14,C14,0) Again, let s step through and evaluate this the way Excel would. It starts with D14 and coverts that to the value in the cell. So the formula gets evaluated to: =IF(TRUE, ,0) Excel has all the pieces it needs to make its decision already! Whichever variant you ve used, copy it down the table using the fill handle trick and notice which customers total sales are pulled over. Figure 6 8

9 Gross Spends from Customers Who Meet the Spend Threshold So what about the spend level? Let s give that one a try. Our criteria for this formula are: IF Spend Level (E14) is TRUE THEN C14 OTHERWISE 0 So subbing that into the IF function syntax, we get: =IF(E14=TRUE,C14,0) And because we already have a column with the TRUE/FALSE values, we can shorten this to: =IF(E14,C14,0) Enter that into cell G14 and copy it down the table so that you get the results shown in Figure 7: Figure 7 Status Check Let s take a second to figure out what we know. The matrix in F7:I10 was already plumbed with the formulas to sum up the values in the columns that we just populated. So now we can start seeing the effects of what we ve been doing: 9

10 Figure 8 As we check now, we can see that we have more than $200,000 of sales where customers have met the minimum visit threshold of 70 visits during the period. If we multiply that by 5% we have $10,000 worth of discounts that we would be giving out. That is good as it is less than the $12,500 that Marketing wants to work with. We can also see that we have more than $57,000 of sales where the customers met the minimum spending level of $15,000. And if we gave them a 5% discount, it would work out to about $2,800. Let s add those two together to see what would happen if we offered both programs. Highlight the two totals and then take a look at the Quick Info section at the bottom of your screen, as shown in Figure 9, below: 10

11 Figure 9 This is by far the quickest way to figure out that our total is $12,936, a value that is more than Marketing s $12,500 budget. Gross Spend from Customers Who Meet Either Threshold What s interesting about the $12,936 total generated by implementing both rewards levels is that it would actually be giving a 10% discount to some customers if they met both the spend level and the visits criteria. Maybe we should look at it and say what would happen if we gave them a 5% discount if they met either of the two criteria, instead of both This will take a little more work as we need to look at a new formula. This time we need to add a new criteria that says if it meets this OR that. Specifically, in the case of cell H14, we want our IF() function to work as follows: IF D14 OR E14 are TRUE 11

12 THEN C14 OTHERWISE 0 So how do we do this? Let s see if we can leverage the OR() function that was discussed earlier. The theory behind the OR() function was that it would return TRUE if any of the conditions were met. We could therefore nest an OR() function into the logical test of the IF() function, as it also returns a TRUE/FALSE value. As a reminder, the syntax for the OR() function is as follows: =OR(Logical1, [Logical2], ) So let s see how this would look for us. We could put in the cells we want to test: =OR(D14=TRUE, E14=TRUE) And we know that we don t really need the =TRUE part, so =OR(D14, E14) To nest this into our previous IF() function, we would drop the leading = (our IF function already has an = sign to start the formula), and we d end up with: =IF(OR(D14, E14),C14,0) So drop that into cell H14 and copy it down the table. The results will look as shown in Figure 10. You can see from the fact that the total value is displayed in rows 14, 19, 22, and so on, that this function is correctly pulling back results where visits exceed the 70-visit threshold, or where the customer spend level is in excess of $15,000. Figure 10 Casting our eyes back up to the matrix table, we can also see that we have just over $243,000 in sales from customers who have visited more than 70 times or have spent more than $15,000. At a 5% reward level, that gives us $12,100, which is in line with our budget from the Marketing department. This is definitely interesting but let s look at it just one more way 12

13 Gross Spend from Customers Who Meet Both Thresholds We looked at our numbers when one of these criteria was true so what happens if we look at it to see if both are true? In other words: IF D14 AND E14 are TRUE THEN C14 OTHERWISE 0 This is very close to the previous formula, with only one difference. In the past example we wanted to get records if any criteria were true (OR), where this time we need all records to be true. Fortunately, we have the AND() function to work with, which is almost identical to OR(). In fact, the only difference is around the way it returns the TRUE/FALSE values. Let s take our previous formula and substitute AND for OR and see what happens. Enter the following in I14 and copy it down the table: =IF(AND(D14, E14),C14,0) At first glance, it looks like column I returns 0 in all cells, but if you scroll down the table you ll see that isn t the case. There is one customer (James in row 53) who meets both criteria. Now let s look back at our matrix and see what we can learn, and if we can come up with a near-perfect solution for marketing to work within our budget. Generating the Ultimate Reward Program The rewards matrix currently shows all the customer spending levels and discounts calculated at a 5% level, as shown in Figure 11: Figure 11 But now we can play with these results a little bit. We already know that rewarding based on both visits and spend level at 5% would create a program that costs $12,936 to implement; a fact that can be proven by summarizing either F10:G10 or F10:I10. Being that this is over the $12,500 budget, that won t be acceptable. So what if we decided to reward customers with either criteria the 5%, but changed it to an extra 2% for those that qualified for both. Let s do that, change the 5% in cell I9 to 2%. 13

14 Figure 12 Well that changes things a bit. Now our total for either and both is just under $12,500. This means we have met the Marketing department s requirements and we can reward the loyal customers that visit frequently, more than 70 times or the ones with large purchases, over $15,000. As an extra incentive we can also reward those customers that do both with a further rebate! This step-by-step tutorial was taken from the accompanying e-book included in the video course Formulas and Functions: Logic and Lookups. Begin your journey to spreadsheet mastery with PD Net s Excel Certificate Program Do you want to delve into Excel and learn how to unlock its power? PD Net offers the Microsoft Excel Certificate Program, it is a practical and flexible online education program consisting of 10 in-depth courses, covering core Excel knowledge relevant in business and finance. This comprehensive program will provide all the required information and tools to become an Intermediate Excel User. Learn more 14

Using VLOOKUP to Combine Data in Microsoft Excel

Using VLOOKUP to Combine Data in Microsoft Excel Using VLOOKUP to Combine Data in Microsoft Excel Microsoft Excel includes a very powerful function that helps users combine data from multiple sources into one table in a spreadsheet. For example, if you

More information

Basic Formulas in Excel. Why use cell names in formulas instead of actual numbers?

Basic Formulas in Excel. Why use cell names in formulas instead of actual numbers? Understanding formulas Basic Formulas in Excel Formulas are placed into cells whenever you want Excel to add, subtract, multiply, divide or do other mathematical calculations. The formula should be placed

More information

2015 County Auditors Institute. May 2015. Excel Workshop Tips. Working Smarter, Not Harder. by David Scott, SpeakGeek@att.net

2015 County Auditors Institute. May 2015. Excel Workshop Tips. Working Smarter, Not Harder. by David Scott, SpeakGeek@att.net 2015 County Auditors Institute May 2015 Excel Workshop Tips Working Smarter, Not Harder by David Scott, SpeakGeek@att.net Note: All examples in this workshop and this tip sheet were done using Excel 2010

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

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

How to Make the Most of Excel Spreadsheets

How to Make the Most of Excel Spreadsheets How to Make the Most of Excel Spreadsheets Analyzing data is often easier when it s in an Excel spreadsheet rather than a PDF for example, you can filter to view just a particular grade, sort to view which

More information

Easy Calculations in Excel

Easy Calculations in Excel Easy Calculations in Excel (2007 and newer) Any time you have a list of numbers that require some sort of calculation like percent change from one year to the next, percent of total, average or just a

More information

Excel Level Two. Introduction. Contents. Exploring Formulas. Entering Formulas

Excel Level Two. Introduction. Contents. Exploring Formulas. Entering Formulas Introduction Excel Level Two This workshop introduces you to formulas, functions, moving and copying data, using autofill, relative and absolute references, and formatting cells. Contents Introduction

More information

How to Concatenate Cells in Microsoft Access

How to Concatenate Cells in Microsoft Access How to Concatenate Cells in Microsoft Access This tutorial demonstrates how to concatenate cells in Microsoft Access. Sometimes data distributed over multiple columns is more efficient to use when combined

More information

Finding the last cell in an Excel range Using built in Excel functions to locate the last cell containing data in a range of cells.

Finding the last cell in an Excel range Using built in Excel functions to locate the last cell containing data in a range of cells. Finding the last cell in an Excel range Using built in Excel functions to locate the last cell containing data in a range of cells. There are all sorts of times in Excel when you will need to find the

More information

Quosal Form Designer Training Documentation

Quosal Form Designer Training Documentation Chapter 4 Advanced Form Design Concepts There is a huge amount of customization that can be done with the Report Designer, and basic quote forms only scratch the surface. Learning how to use the advanced

More information

Using Mail Merge in Microsoft Word 2003

Using Mail Merge in Microsoft Word 2003 Using Mail Merge in Microsoft Word 2003 Mail Merge Created: 12 April 2005 Note: You should be competent in Microsoft Word before you attempt this Tutorial. Open Microsoft Word 2003 Beginning the Merge

More information

Excel 2007: Basics Learning Guide

Excel 2007: Basics Learning Guide Excel 2007: Basics Learning Guide Exploring Excel At first glance, the new Excel 2007 interface may seem a bit unsettling, with fat bands called Ribbons replacing cascading text menus and task bars. This

More information

Introduction to MS EXCEL 2007 Data entry & formatting Using formulas & functions Presenting data with charts Database features in Excel

Introduction to MS EXCEL 2007 Data entry & formatting Using formulas & functions Presenting data with charts Database features in Excel Introduction to MS EXCEL 2007 Data entry & formatting Using formulas & functions Presenting data with charts Database features in Excel Introduction to MS Excel 2007 2 Table of Contents Getting started

More information

MBA Quantitative Methods PC-Exercises Introductory Examples

MBA Quantitative Methods PC-Exercises Introductory Examples MBA Quantitative Methods PC-Exercises Introductory Examples intro.xls intro_with_output.xls intro.doc For all Examples you need the file intro.xls. The file intro_with_output.xls is the file with the results

More information

VLOOKUP Functions How do I?

VLOOKUP Functions How do I? For Adviser use only (Not to be relied on by anyone else) Once you ve produced your ISA subscription report and client listings report you then use the VLOOKUP to create all the information you need into

More information

Excel Functions (fx) Click the Paste Function button. In the Function Category select All. Scroll down the Function Name list And select SUM.

Excel Functions (fx) Click the Paste Function button. In the Function Category select All. Scroll down the Function Name list And select SUM. Excel Functions (fx) Excel has prewritten formulas called functions to help simplify making complicated calculations. A function takes a value or values, performs an operation, and returns a result to

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

Creating Basic Excel Formulas

Creating Basic Excel Formulas Creating Basic Excel Formulas Formulas are equations that perform calculations on values in your worksheet. Depending on how you build a formula in Excel will determine if the answer to your formula automatically

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

Pulling a Random Sample from a MAXQDA Dataset

Pulling a Random Sample from a MAXQDA Dataset In this guide you will learn how to pull a random sample from a MAXQDA dataset, using the random cell function in Excel. In this process you will learn how to export and re-import variables from MAXQDA.

More information

QuickStart: Learn DAX Basics in 30 Minutes

QuickStart: Learn DAX Basics in 30 Minutes QuickStart: Learn DAX Basics in 30 Minutes Owen Duncan Summary: This QuickStart is for users new to PowerPivot or tabular model projects authored in SQL Server Data Tools. It is meant to give you a quick

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

ACADEMIC TECHNOLOGY SUPPORT

ACADEMIC TECHNOLOGY SUPPORT ACADEMIC TECHNOLOGY SUPPORT Microsoft Excel: Formulas ats@etsu.edu 439-8611 www.etsu.edu/ats Table of Contents: Overview... 1 Objectives... 1 1. How to Create Formulas... 2 2. Naming Ranges... 5 3. Common

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

To launch the Microsoft Excel program, locate the Microsoft Excel icon, and double click.

To launch the Microsoft Excel program, locate the Microsoft Excel icon, and double click. EDIT202 Spreadsheet Lab Assignment Guidelines Getting Started 1. For this lab you will modify a sample spreadsheet file named Starter- Spreadsheet.xls which is available for download from the Spreadsheet

More information

SECTION 5: Finalizing Your Workbook

SECTION 5: Finalizing Your Workbook SECTION 5: Finalizing Your Workbook In this section you will learn how to: Protect a workbook Protect a sheet Protect Excel files Unlock cells Use the document inspector Use the compatibility checker Mark

More information

quick start guide A Quick Start Guide inflow Support GET STARTED WITH INFLOW

quick start guide A Quick Start Guide inflow Support GET STARTED WITH INFLOW GET STARTED WITH INFLOW quick start guide Welcome to the inflow Community! This quick-start guide includes all the important stuff to get you tracking your inventory before you know it! Just follow along

More information

Using Formulas, Functions, and Data Analysis Tools Excel 2010 Tutorial

Using Formulas, Functions, and Data Analysis Tools Excel 2010 Tutorial Using Formulas, Functions, and Data Analysis Tools Excel 2010 Tutorial Excel file for use with this tutorial Tutor1Data.xlsx File Location http://faculty.ung.edu/kmelton/data/tutor1data.xlsx Introduction:

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

1.6 The Order of Operations

1.6 The Order of Operations 1.6 The Order of Operations Contents: Operations Grouping Symbols The Order of Operations Exponents and Negative Numbers Negative Square Roots Square Root of a Negative Number Order of Operations and Negative

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

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

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

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

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

So you want to create an Email a Friend action

So you want to create an Email a Friend action So you want to create an Email a Friend action This help file will take you through all the steps on how to create a simple and effective email a friend action. It doesn t cover the advanced features;

More information

What is Microsoft Excel?

What is Microsoft Excel? What is Microsoft Excel? Microsoft Excel is a member of the spreadsheet family of software. Spreadsheets allow you to keep track of data, create charts based from data, and perform complex calculations.

More information

Using Basic Financial and Logical Functions

Using Basic Financial and Logical Functions LESSON 8 Using Basic Financial and Logical Functions 8.1 After completing this lesson, you will be able to: Use the PMT function to forecast loan payments. Calculate cumulative interest. Compute investment

More information

3.2 Matrix Multiplication

3.2 Matrix Multiplication 3.2 Matrix Multiplication Question : How do you multiply two matrices? Question 2: How do you interpret the entries in a product of two matrices? When you add or subtract two matrices, you add or subtract

More information

ECDL. European Computer Driving Licence. Spreadsheet Software BCS ITQ Level 2. Syllabus Version 5.0

ECDL. European Computer Driving Licence. Spreadsheet Software BCS ITQ Level 2. Syllabus Version 5.0 European Computer Driving Licence Spreadsheet Software BCS ITQ Level 2 Using Microsoft Excel 2010 Syllabus Version 5.0 This training, which has been approved by BCS, The Chartered Institute for IT, includes

More information

Chapter 4. Spreadsheets

Chapter 4. Spreadsheets Chapter 4. Spreadsheets We ve discussed rather briefly the use of computer algebra in 3.5. The approach of relying on www.wolframalpha.com is a poor subsititute for a fullfeatured computer algebra program

More information

MICROSOFT ACCESS STEP BY STEP GUIDE

MICROSOFT ACCESS STEP BY STEP GUIDE IGCSE ICT SECTION 11 DATA MANIPULATION MICROSOFT ACCESS STEP BY STEP GUIDE Mark Nicholls ICT Lounge P a g e 1 Contents Task 35 details Page 3 Opening a new Database. Page 4 Importing.csv file into the

More information

Excel macros made easy

Excel macros made easy IT Training Excel macros made easy Jane Barrett, IT Training & Engagement Team Information System Services Version 1.1 Scope Learning outcomes Understand the concept of what a macro is and what it does.

More information

Introduction to Microsoft Excel 1 Part I

Introduction to Microsoft Excel 1 Part I Introduction to Microsoft Excel 1 Part I Objectives When you complete this workshop you will be able to: Recognize Excel s basic operations and tools; Develop simple worksheets; Use formulas; Format worksheets;

More information

Microsoft Excel 2007. Introduction to Microsoft Excel 2007

Microsoft Excel 2007. Introduction to Microsoft Excel 2007 Microsoft Excel 2007 Introduction to Microsoft Excel 2007 Excel is an electronic spreadsheet to organize your data into rows and columns. One can use it to perform basic to advanced level mathematical

More information

Summary of important mathematical operations and formulas (from first tutorial):

Summary of important mathematical operations and formulas (from first tutorial): EXCEL Intermediate Tutorial Summary of important mathematical operations and formulas (from first tutorial): Operation Key Addition + Subtraction - Multiplication * Division / Exponential ^ To enter a

More information

Intermediate PowerPoint

Intermediate PowerPoint Intermediate PowerPoint Charts and Templates By: Jim Waddell Last modified: January 2002 Topics to be covered: Creating Charts 2 Creating the chart. 2 Line Charts and Scatter Plots 4 Making a Line Chart.

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

Microsoft Excel - XP Intermediate

Microsoft Excel - XP Intermediate Microsoft Excel - XP Intermediate Financial Functions Goal Seeking Variable Tables IF Statements AND & OR Functions Mathematical Operations Between Separate Sheets Mathematical Operations Between Separate

More information

MS-EXCEL: ANALYSIS OF EXPERIMENTAL DATA

MS-EXCEL: ANALYSIS OF EXPERIMENTAL DATA MS-EXCEL: ANALYSIS OF EXPERIMENTAL DATA Rajender Parsad and Shashi Dahiya I.A.S.R.I., Library Avenue, New Delhi-110 012 The inbuilt functions and procedures of MS-EXCEL can be utilized for the analysis

More information

warpct.com Working with MS Excel 2003 Workbook courseware by WARP! Computer Training

warpct.com Working with MS Excel 2003 Workbook courseware by WARP! Computer Training warpct.com courseware by WARP! Computer Training Working with MS Excel 2003 Workbook Welcome! Thank you for evaluating a portion of this workbook. If you have any questions or comments regarding our training

More information

JF MSISS. Excel 2010. Tutorial 4

JF MSISS. Excel 2010. Tutorial 4 JF MSISS Excel 2010 Tutorial 4 In this session you will learn how to: Using functions The IF statement Calculating net present values. 1. Building a Spreadsheet Model The standard mortgage is the annuity

More information

Tutorial Customer Lifetime Value

Tutorial Customer Lifetime Value MARKETING ENGINEERING FOR EXCEL TUTORIAL VERSION 150211 Tutorial Customer Lifetime Value Marketing Engineering for Excel is a Microsoft Excel add-in. The software runs from within Microsoft Excel and only

More information

Microsoft Excel 2010 Training. Use Excel tables to manage information

Microsoft Excel 2010 Training. Use Excel tables to manage information Microsoft Excel 2010 Training Use Excel tables to manage information Overview: Help with data management In this course, you ll learn how to manage information by using tables in Excel. Tables make it

More information

Microsoft Excel 2007 Level 2

Microsoft Excel 2007 Level 2 Information Technology Services Kennesaw State University Microsoft Excel 2007 Level 2 Copyright 2008 KSU Dept. of Information Technology Services This document may be downloaded, printed or copied for

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

Creating a Database using Access 2007

Creating a Database using Access 2007 Creating a Database using Access 2007 Starting Access 2007 Double click on the Access 2007 icon on the Windows desktop (see right), or click-on the Start button in the lower left corner of the screen,

More information

Agile Development. Solution Guide. Coordinate Anything PRODUCT DEVELOPMENT.02

Agile Development. Solution Guide. Coordinate Anything PRODUCT DEVELOPMENT.02 Solution Guide PRODUCT DEVELOPMENT.02 Agile Development Find it online: smartsheet.com/product-development-solutions/agile-development Coordinate Anything About Agile Development A good idea doesn t mean

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

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

Gila Shoes Exercise: IF, MAX, & MIN Step-by-Step

Gila Shoes Exercise: IF, MAX, & MIN Step-by-Step Gila Shoes Exercise: IF, MAX, & MIN Step-by-Step EXCEL REVIEW 2001-2002 Gila Shoes The Exercise Background Rob owns a Fast Feet running store in Carrboro. For a month-long promotion for his store s new

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 Basics By Tom Peters & Laura Spielman

Excel Basics By Tom Peters & Laura Spielman Excel Basics By Tom Peters & Laura Spielman What is Excel? Microsoft Excel is a software program with spreadsheet format enabling the user to organize raw data, make tables and charts, graph and model

More information

Using Microsoft Project 2000

Using Microsoft Project 2000 Using MS Project Personal Computer Fundamentals 1 of 45 Using Microsoft Project 2000 General Conventions All text highlighted in bold refers to menu selections. Examples would be File and Analysis. ALL

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

Using Excel 2000 to Create a Weighted-Grade Grade Book

Using Excel 2000 to Create a Weighted-Grade Grade Book Using Excel 2000 to Create a Weighted-Grade Grade Book This handout assumes that you already have familiarity with creating and copying formulas in Excel 2000. If you do not, you should consult our handout

More information

Calculate Highest Common Factors(HCFs) & Least Common Multiples(LCMs) NA1

Calculate Highest Common Factors(HCFs) & Least Common Multiples(LCMs) NA1 Calculate Highest Common Factors(HCFs) & Least Common Multiples(LCMs) NA1 What are the multiples of 5? The multiples are in the five times table What are the factors of 90? Each of these is a pair of factors.

More information

Creating Formulas II. Multiplication/Division Percentages Order of Operations Relative and Absolute Reference

Creating Formulas II. Multiplication/Division Percentages Order of Operations Relative and Absolute Reference Creating Formulas II Multiplication/Division Percentages Order of Operations Relative and Absolute Reference Creating Formulas II In the first paper, Creating Formulas I (which I encourage you to read

More information

Getting Started with WebSite Tonight

Getting Started with WebSite Tonight Getting Started with WebSite Tonight WebSite Tonight Getting Started Guide Version 3.0 (12.2010) Copyright 2010. All rights reserved. Distribution of this work or derivative of this work is prohibited

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

EXCEL FINANCIAL USES

EXCEL FINANCIAL USES EXCEL FINANCIAL USES Table of Contents Page LESSON 1: FINANCIAL DOCUMENTS...1 Worksheet Design...1 Selecting a Template...2 Adding Data to a Template...3 Modifying Templates...3 Saving a New Workbook as

More information

An Introduction to Excel Pivot Tables

An Introduction to Excel Pivot Tables An Introduction to Excel Pivot Tables EXCEL REVIEW 2001-2002 This brief introduction to Excel Pivot Tables addresses the English version of MS Excel 2000. Microsoft revised the Pivot Tables feature with

More information

MODELLING. IF...THEN Function EXCEL 2007. Wherever you see this symbol, make sure you remember to save your work!

MODELLING. IF...THEN Function EXCEL 2007. Wherever you see this symbol, make sure you remember to save your work! MODELLING IF THEN IF...THEN Function EXCEL 2007 Wherever you see this symbol, make sure you remember to save your work! IF.Then Function Some functions do not calculate values but instead do logical tests

More information

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9.

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9. Working with Tables in Microsoft Word The purpose of this document is to lead you through the steps of creating, editing and deleting tables and parts of tables. This document follows a tutorial format

More information

SOME EXCEL FORMULAS AND FUNCTIONS

SOME EXCEL FORMULAS AND FUNCTIONS SOME EXCEL FORMULAS AND FUNCTIONS About calculation operators Operators specify the type of calculation that you want to perform on the elements of a formula. Microsoft Excel includes four different types

More information

PA Payroll Exercise for Intermediate Excel

PA Payroll Exercise for Intermediate Excel PA Payroll Exercise for Intermediate Excel Follow the directions below to create a payroll exercise. Read through each individual direction before performing it, like you are following recipe instructions.

More information

Relative and Absolute Change Percentages

Relative and Absolute Change Percentages Relative and Absolute Change Percentages Ethan D. Bolker Maura M. Mast September 6, 2007 Plan Use the credit card solicitation data to address the question of measuring change. Subtraction comes naturally.

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

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

Excel 2007 Basic knowledge

Excel 2007 Basic knowledge Ribbon menu The Ribbon menu system with tabs for various Excel commands. This Ribbon system replaces the traditional menus used with Excel 2003. Above the Ribbon in the upper-left corner is the Microsoft

More information

1. Linking among several worksheets in the same workbook 2. Linking data from one workbook to another

1. Linking among several worksheets in the same workbook 2. Linking data from one workbook to another Microsoft Excel 2003: Part V Advanced Custom Tools Windows XP (I) Linking Data from Several Worksheets and Workbooks In Excel Level III, we have learned and seen examples of how to link data from one worksheet

More information

Solution Guide SALES.02. Customer Success. Find it online: smartsheet.com/sales-solutions/customer-success-management. Coordinate Anything

Solution Guide SALES.02. Customer Success. Find it online: smartsheet.com/sales-solutions/customer-success-management. Coordinate Anything Solution Guide SALES.02 Customer Success Find it online: smartsheet.com/sales-solutions/customer-success-management Coordinate Anything About Customer Success Management In any business, especially those

More information

SPREADSHEETS. TIP! Whenever you get some new data, save it under a new name! Then if you mess things up, you can always go back to the original.

SPREADSHEETS. TIP! Whenever you get some new data, save it under a new name! Then if you mess things up, you can always go back to the original. SPREADSHEETS Spreadsheets are great tools for sorting, filtering and running calculations on tables of data. Journalists who know the basics can interview data to find stories and trends that others may

More information

Chapter 9 Creating Reports in Excel

Chapter 9 Creating Reports in Excel Chapter 9 Creating Reports in Excel One of the most powerful features of Standard & Poor s Research Insight is its ability to communicate with Microsoft Excel through Active-X Technology. Excel requests

More information

Card sort analysis spreadsheet

Card sort analysis spreadsheet Interaction Design Instructions for use: Card sort analysis spreadsheet June 2007 Page Card sort analysis spreadsheet About the spreadsheet I have an Excel spreadsheet that I use to analyze data from physical

More information

MICROSOFT EXCEL 2010. Formulas, Functions, & Macros. Documented by Vincent J. Yanusauskas Computer Training Coordinator

MICROSOFT EXCEL 2010. Formulas, Functions, & Macros. Documented by Vincent J. Yanusauskas Computer Training Coordinator MICROSOFT EXCEL 2010 Formulas, Functions, & Macros Documented by Vincent J. Yanusauskas Computer Training Coordinator Introduction This handout was created to familiarize the user with the most common

More information

Microsoft PowerPoint 2010 Handout

Microsoft PowerPoint 2010 Handout Microsoft PowerPoint 2010 Handout PowerPoint is a presentation software program that is part of the Microsoft Office package. This program helps you to enhance your oral presentation and keep the audience

More information

Introduction to Data Tables. Data Table Exercises

Introduction to Data Tables. Data Table Exercises Tools for Excel Modeling Introduction to Data Tables and Data Table Exercises EXCEL REVIEW 2000-2001 Data Tables are among the most useful of Excel s tools for analyzing data in spreadsheet models. Some

More information

Assessment Management

Assessment Management Facts Using Doubles Objective To provide opportunities for children to explore and practice doubles-plus-1 and doubles-plus-2 facts, as well as review strategies for solving other addition facts. www.everydaymathonline.com

More information

Excel Spreadsheet Activity Redo #1

Excel Spreadsheet Activity Redo #1 Excel Spreadsheet Activity Redo #1 Melissa Ebling 11/9/06 Directions: Please follow all directions in this packet. This assignment will consist of your tracking ten different stocks over a period of a

More information

Using Microsoft Word. Working With Objects

Using Microsoft Word. Working With Objects Using Microsoft Word Many Word documents will require elements that were created in programs other than Word, such as the picture to the right. Nontext elements in a document are referred to as Objects

More information

Our goal, as journalists, is to look for some patterns and trends in this information.

Our goal, as journalists, is to look for some patterns and trends in this information. Microsoft Excel: MLB Payrolls exercise This is a beginner exercise for learning some of the most commonly used formulas and functions in Excel. It uses an Excel spreadsheet called MLB Payrolls 2009_2011

More information

INTRO TO EXCEL SPREADSHEET

INTRO TO EXCEL SPREADSHEET INTRO TO EXCEL SPREADSHEET (World Population) Objectives: Become familiar with the Excel spreadsheet environment. (Parts 1-5) Learn to create and save a worksheet. (Part 1) Perform simple calculations,

More information

Solution Guide SALES.03. Sales Operations. Find it online: smartsheet.com/sales-solutions/sales-operations. Coordinate Anything

Solution Guide SALES.03. Sales Operations. Find it online: smartsheet.com/sales-solutions/sales-operations. Coordinate Anything Solution Guide SLES.03 Sales Operations Find it online: smartsheet.com/sales-solutions/sales-operations oordinate nything bout Sales Operations Empowering sales teams to focus on the best revenue generating

More information

Introduction to Excel

Introduction to Excel Introduction to Excel This material has been reprinted, with permission, from the Excel Tutorial on the TRIO program webpage of the University of South Dakota. A series of "screencast" videos covering

More information

Microsoft Excel 2013 Tutorial

Microsoft Excel 2013 Tutorial Microsoft Excel 2013 Tutorial TABLE OF CONTENTS 1. Getting Started Pg. 3 2. Creating A New Document Pg. 3 3. Saving Your Document Pg. 4 4. Toolbars Pg. 4 5. Formatting Pg. 6 Working With Cells Pg. 6 Changing

More information

Module 7 Invoicing. Step by Step Guide PSA 2015. 7.1 Single project invoicing 7.2 Batch invoicing projects 7.3 Program invoicing 7.

Module 7 Invoicing. Step by Step Guide PSA 2015. 7.1 Single project invoicing 7.2 Batch invoicing projects 7.3 Program invoicing 7. Step by Step Guide PSA 2015 Module 7 7.1 Single project invoicing 7.2 Batch invoicing projects 7.3 Program invoicing 7.4 Invoice approval PSA 2015 (Release 2.3.0.243) PSA 2015 Step by Step Guide is published

More information

INTRODUCTION TO EXCEL

INTRODUCTION TO EXCEL INTRODUCTION TO EXCEL 1 INTRODUCTION Anyone who has used a computer for more than just playing games will be aware of spreadsheets A spreadsheet is a versatile computer program (package) that enables you

More information

Excel 2003 A Beginners Guide

Excel 2003 A Beginners Guide Excel 2003 A Beginners Guide Beginner Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on

More information