CHAPTER 13: VLOOKUP()

Size: px
Start display at page:

Download "CHAPTER 13: VLOOKUP()"

Transcription

1 CHAPTER 13: VLOOKUP() You can look it up. Casey Stengel Consider a telemarketing business. A customer places an order by calling a receptionist, who asks for his or her name, address, and ZIP code, among other things. Other things do not include the customer s city or state, for, if we know one s ZIP code, we already know his or her city and state. The trick is to get that information into the spreadsheet as efficiently as possible. ZIP CODE EXAMPLE Let s say we have entered a table of ZIP codes in our spreadsheet, such as the one below: AA AB AC 1 ZIP CODE TABLE 2 ZIP CITY STATE Amityville NY Oak Beach NY North Babylon NY West Babylon NY Now, when a customer calls, we enter the information in the table below (to keep things simple, we are omitting the street address, credit card number, and so on). We ask her last name, and type Smith in cell A3. We ask her first name, and type Sue in cell B3. Finally, we ask her ZIP Code, and enter in cell E3. 1 CUSTOMER TABLE 2 Last First City State ZIP 3 Smith Sue We can place a formula in cell C3 that will look up Sue s ZIP Code in the ZIP Code table and return the proper city. Another formula in D3 will look up the ZIP code and return Sue s state. The key to these formulæ is the VLOOKUP() function, one of Excel s most powerful and least obvious functions. USING VLOOKUP() The general form of the VLOOKUP() function is: where =VLOOKUP(target,table,column) target is the cell that contains the number we are going to look up; table is the table in which we will look; and, column is the column number from that table that contains the desired value. To illustrate its use in the previous example: Step 1: In cell C3, type: =VLOOKUP( Step 2: Next, point to the target by pressing Cell C3 should look like this: =VLOOKUP(E3 twice. Step 3: Type a comma, to separate the target from the table. Step 4: Move the cursor to cell AA3, one corner of the table. Step 5: Select the table by Shift as you move the cursor. Step 6: When the entire table is selected, press F4 to lock the table s location in an absolute address. Cell C3 should look like this: =VLOOKUP(E3,$AA$3:$AC$100 Step 7: Type a comma, to separate the table from the column number. Step 8: Type the table. 2, because City is the second column in Step 9: Close the expression with a Enter. ) and press

2 PAGE 110 CHAPTER 13: VLOOKUP() WAYNE THOMAS SPIES The results will be: 1 CUSTOMER TABLE 2 Last First City State ZIP 3 Smith Sue Amityville To test this, move to cell E3. Type and press Enter. Cell C3 should automatically update, displaying Oak Beach. When a lookup target does not appear in the Lookup Table, Excel, by default, returns the value of the last one that does. You can solve this problem with the following: A B D E 1 Enter a number: 1,234 2 two 2 4 four 3 You entered a number outside the range 6 six 4 8 eight 5 9 a number outside the range ="You entered " & VLOOKUP(B1,$D$1:$E$5),2) MISSING ELEMENTS Let s take a closer look at how the VLOOKUP() function works. Set up the following worksheet, where the range D1:E4 is the Lookup Table: A B D E 1 Enter a number: 2 2 two 2 4 four 3 You entered two 6 six 4 8 eight Enter: ="You entered " & VLOOKUP(B1,$D$1:$E$4),2) in cell B2, and cell A3 will report: 2 You entered two sacrificing grammar for brevity. Enter: in cell B2, and cell A3 will report: OUT OF RANGE So far, so good. Now enter: and cell A3 will report: 4 You entered four 1,234 You entered eight Now when you enter: cell A3 will report: 1,234 You entered a number outside the range MISSING NUMBERS That solves the problem with numbers that are out of range. But what about numbers that are missing? Enter: and cell A3 will report: 5 You entered four One solution is to enter a value for the missing numbers: A B D E 1 Enter a number: 5 2 two 2 3 an invalid #. 3 You entered an invalid #. 4 four 4 5 an invalid #. 5 6 six 6 7 an invalid #. 7 8 eight 8 9 Now when you enter: cell A3 will report: 5 You entered an invalid #. a number outside the range ="You entered " & VLOOKUP(B1,$D$1:$E$8),2)

3 WAYNE THOMAS SPIES MICROSOFT EXCEL: COMPLETE PAGE 111 This works well if you have just a few missing numbers. Also, you can customize the message so it is very clear whether the number is below the range, above the range, or simply missing. PARAMETER SOLUTION If you can live without these customized messages, Excel provides an additional tool for dealing with missing numbers. Simply add the False parameter to the end of the VLOOKUP() complement as shown here: A B D E 1 Enter a number: 3 2 two 2 4 four 3 #NA 6 six 4 8 eight ="You entered " & VLOOKUP(B1,$D$1:$E$4),2,False) Now enter any missing number, and cell A3 will return: #NA Adding the False parameter to the end forces the VLOOKUP() function to return only exact matches. Now, at this point, you may throw your hands in the air, and wonder why it didn t work like this in the first place. Later, though, you will see that finding only exact matches is not always what we want. NOTES

4 PAGE 112 CHAPTER 13: VLOOKUP() WAYNE THOMAS SPIES

5 LAB 6: USING VLOOKUP() You have seen several examples of how VLOOKUP() can be used to look up information, just as you might look up a number in a phone book. While that s helpful, the VLOOKUP() function is particularly useful when we need to calculate marginal rates. DATES COMMENT We would like to enter a date in cell A2, and then display the day of the week in cell B2: A B C D 1 Date Day of Week 2 10/11/2020??? 3 WEEKDAY() The WEEKDAY() function takes a date, and then returns 1 if that date is a Sunday, 2 if it s a Monday, 3 if it s a Tuesday, and so on. SOLUTION We can use the WEEKDAY() function in conjunction with a VLOOKUP() table of numbers and their corresponding days. Step 1: Create a Lookup Table, as in AA2:AB8, below. A B AA AB 1 Date Day of Week Number Name 2 10/11/2020??? 1 Sunday 3 2 Monday 4 What formula 3 Tuesday 5 goes here? 4 Wednesday 6 5 Thursday 7 This is the lookup 6 Friday 8 table. 7 Saturday INCOME TAX Calculating income tax is hard to do without tax tables. We can use Excel s VLOOKUP() function to automate this process of calculating marginal rates. SETUP The tax laws change from time to time, but the basic concept of the progressive income tax has been with us for some time. In a progressive income tax the tax rate increases with income. In other words, the first $1,000 of taxable income that you make carries with it a low rate. The rate that you pay on the last dollar earned is called the marginal rate: the rate on one additional dollar. Our tax table has five notches. On income between 0 and $1,800, you pay a marginal rate of 11%. If you make more than $1,800, you pay 11% on the first $1,800, plus 15% on the balance, up to $16,800 SOLUTION Step 1: Set up the following table, using a dummy value of 54,002 for our taxable income (that is, our total income less various deductions and exemptions). 3 4 : % 5 Excess : 1,800 15% 6 : 16,800 28% 7 : 27,000 35% 8 Total : 54,000 38% Now, what formula goes in cell B2? Step 2: In cell B2, enter this formula: =VLOOKUP(WEEKDAY(A,2),$AA$2:$AB$8,2) Step 2: The concept of a progressive tax means that you pay the base rate plus the marginal rate time the income over the base amount. Thus the on a 0

6 PAGE 114 LAB 6: USING VLOOKUP() WAYNE THOMAS SPIES income is 0. For each notch, the base tax increases as shown. Enter: =D4+E4+(C5-C4) in cell D5, and copy it down through cell D : % 5 Excess : 1, % 6 : 16,800 2,448 28% 7 =D4+E4*(C5-C4) : 27,000 5,304 35% 8 Total : 54,000 14,754 38% Step 5: The so-called Excess is the able less the. In cell B5, enter: =B2-B3 3 : 54,000 4 : 14, % 5 Excess : 2 1, % 6 : 16,800 2,448 28% 7 : 27,000 5,304 35% 8 Total : 54,000 14,754 38% =B2-B3 Step 3: In cell B3, enter the formula to determine the : 3 : 54,000 4 : % 5 Excess : 1, % 6 : 16,800 2,448 28% 7 : 27,000 5,304 35% 8 Total : 54,000 14,754 38% =VLOOKUP(B2,$C$4:$E$8,1) Step 4: Find the, the tax on the : 3 : 54,000 4 : 14, % 5 Excess : 1, % 6 : 16,800 2,448 28% 7 : 27,000 5,304 35% 8 Total : 54,000 14,754 38% Step 6: The can be looked up in the Table; In cell B6, enter: =VLOOKUP(B2,$C$4:$E$8,3) 3 : 54,000 4 : 14, % 5 Excess : 2 1, % 6 : 38% 16,800 2,448 28% 7 : 27,000 5,304 35% 8 Total : 54,000 14,754 38% =VLOOKUP(B2,$C$4:$E$8,3) Step 7: The is the times the Excess. In cell B7 enter: =B6*B5 =VLOOKUP(B2,$C$4:$E$8,2)

7 WAYNE THOMAS SPIES MICROSOFT EXCEL: COMPLETE PAGE : 54,000 4 : 14, % 5 Excess : 2 1, % 6 : 38% 16,800 2,448 28% 7 : ,000 5,304 35% 8 Total : 54,000 14,754 38% Step 8: Finally, the Total is the plus the. In cell B8 enter: =B4+B7 3 : 54,000 4 : 14, % 5 Excess : 2 1, % 6 : 38% 16,800 2,448 28% 7 : ,000 5,304 35% 8 Total : 14, ,000 14,754 38% MARGINAL COMMISSIONS COMMENT =B6*B5 =B4+B7 In many businesses, the sales staff is paid according to a bracket commission scheme. With marginal commissions, the commission rate depends on the amount of sales. There are two ways of determining bracket commissions. The more simple approach works like this: the commission rate depends on total sales. The higher the total sales, the higher the rate. For example, on sales up to $10,000, the sales person gets paid 10 percent. If the sales total between $10,000 and 20,000, the overall commission rate jumps to 12 percent, and if the total sales are more than $20,000, the rate is 14 percent. To illustrate this, consider the following worksheet, which illustrates the situation on the penultimate sales day of the month: A B C AA AB 1 Person Sales Sales 2 Allan 8,000 $ % 3 Sue 10,001 1, , % 4 Bob 19,999 2, , % 5 Karen 20,001 2, =VLOOKUP(B5,$AA$2:$AB$4,2)*B5 This is the Look-Up Table. This approach is easy to understand. Just multiply your total sales times the rate for that level, and you have the answer. That s what the formula does: For Allan, it looks up the value of cell B2 8,000- in the Lookup Table. Because 8,000 falls between 0 and the next value, the VLOOKUP() function returns the value of column 2 for 0, or 10%. It then multiplies this rate times the value of cell B2, and returns $ For Karen, it looks up the value of cell B5 20,001 in the Lookup Table. Because 20,001 is greater than 20,000, the VLOOKUP() function returns the value of column 2 for 20,000, or 14% It then multiplies this rate times the value of cell B5, and returns $2, Although this commission scheme is easy to calculate and easy to understand, it is rarely used, because it produces perverse incentives in real life. For example, look at Bob. If he could sell just $1 more what s in it for him? About $400! Bob will do almost anything for that last sale. Unfortunately, not all sales are good sales. He might sell to someone who is not credit worthy. He might sell to someone who he knows will return the product the very next day. He may make exaggerated claims, or in other ways misrepresent the product, to get that next sale. He may even juggle the books to push sales from one period into another. And what about Allan? What s another $100 sale worth to him? Ten percent. $10. Not much. Now, look at the company. On sales of $58,001, it will pay commissions of $7, With one more day of sales this month, Allan has very little incentive $10, Sue has some $12, Karen has more $14, but Bob has a huge incentive $ to make one more $100 sale. There is a better, albeit more complicated, approach. Instead of basing the rate on total sales, we can base it on

8 PAGE 116 LAB 6: USING VLOOKUP() WAYNE THOMAS SPIES marginal sales. A commission based on marginal sales rewards the next sale just a little bit more than the previous one, so that there is always more incentive but not a huge incentive to make one more sale. SOLUTION Step 1: Set up the following Lookup Table: The formula in cells AC2 through AC7 is not intuitive; you have to study it carefully. It works like this: if you sell nothing, you get your base commission which is 0. If you sell $100, you will get your base commission 0 plus the marginal commission 100*9.0% or $9.00. If your sales are exactly 4,000, you get the base commission 0 plus the sales above the base 4,000-0 or 4,000 times the marginal rate 4,000*9.0%, or $360. As you can see in our table, that figure becomes the base rate for sales of at least $4,000. If your sales are 4,200, you get the base commission $360 plus the sales above the base sales 4,200-4,000 or 200 times the marginal rate. Algebraically, this is $360 + (4,200-4,000)*10.5% or $381. AA AB AC AD 1 Level Sales 2 Level A % 3 Level B 4, % 4 Level C 8, % 5 Level D 12,000 1, % 6 Level E 16,000 1, % 7 Level F 20,000 2, % =AC6+(AD6*(AB7-AB6)) Step 2: Now we must create a pay-out table, as follows: 1 Person Sales 2 Allan 8,000 3 Sue 10,001 4 Bob 19,999 5 Karen 20,001 Total Step 3: For the commission, we use this formula: =VLOOKUP(B2,AB2:AD7,2) 1 Person Sales 2 Allan 8, Sue 10, Bob 19,999 1,800 5 Karen 20,001 2,400 =VLOOKUP(B2,AB2:AD7,2) Total Step 4: The is the marginal commission rate, times (Sales - Sales): =VLOOKUP(B1,$AB$2:$AD$7,3)* (B1-VLOOKUP(B1,$AB$2:$AD$7,1)) 1 Person Sales 2 Allan 8, Sue 10, Bob 19,999 1, Karen 20,001 2, =VLOOKUP(B5,$AB$2:$AD$7,3)* (B5-VLOOKUP(B5,$AB$2:$AD$7,1)) Step 5: Finally, the Total is simply: Total

9 WAYNE THOMAS SPIES MICROSOFT EXCEL: COMPLETE PAGE Person Sales Total 2 Allan 8, Sue 10, , Bob 19,999 1, , Karen 20,001 2, , =C5+D5 Now let s examine the new structure. Consider the effects of the incentive on a new $100 sale: Person Old Old Incentive New New Incentive Allan Sue 1, , Bob 2, , Karen 2, , Now, don t be mislead by the fact that one person makes more or less in one scheme than the other. We can always tinker with the rates to achieve equity. But two points should be clear: By using the marginal rate approach, the incentives to sell one more increase steadily with sales, which is equitable and a good motivator. There are no large incentives to cheat the more you sell, the more you make. NOTES

How to Create a Spreadsheet With Updating Stock Prices Version 2, August 2014

How to Create a Spreadsheet With Updating Stock Prices Version 2, August 2014 How to Create a Spreadsheet With Updating Stock Prices Version 2, August 2014 by Fred Brack NOTE: In December 2014, Microsoft made changes to their portfolio services online, widely derided by users. My

More information

Lab 6. Microsoft Excel

Lab 6. Microsoft Excel Lab 6 Microsoft Excel Objective At the end of this lesson, you should be able to describe components and functions in Excel perform and apply basic Excel operations Introduction to Management Information

More information

The Advanced Budget Project Part D The Budget Report

The Advanced Budget Project Part D The Budget Report The Advanced Budget Project Part D The Budget Report A budget is probably the most important spreadsheet you can create. A good budget will keep you focused on your ultimate financial goal and help you

More information

Personal Finance Amortization Table. Name: Period:

Personal Finance Amortization Table. Name: Period: Personal Finance Amortization Table Name: Period: Ch 8 Project using Excel In this project you will complete a loan amortization table (payment schedule) for the purchase of a home with a $235,500 loan

More information

Guide Of Excel 2007 Vlookup Formula Not Result

Guide Of Excel 2007 Vlookup Formula Not Result Guide Of Excel 2007 Vlookup Formula Not Result Excel VLOOKUP function pulls data from table in Excel. so if the product code is not found, the result will be #N/A. (Note: Excel is rather In Excel 2007,

More information

APPLICATION FOR EMPLOYMENT

APPLICATION FOR EMPLOYMENT Jordan Air, Inc. 1320 Greensboro Hwy P.O. Box 1649 Watkinsville, GA 30677 Phone: (706) 769-0661 Fax: (706) 769-0651 PERSONAL INFORMATION: APPLICATION FOR EMPLOYMENT : Date: Address: City: State: Zip Code:

More information

Computing compound interest and composition of functions

Computing compound interest and composition of functions Computing compound interest and composition of functions In today s topic we will look at using EXCEL to compute compound interest. The method we will use will also allow us to discuss composition of functions.

More information

Creating formulas that use dates and times can be a little confusing if

Creating formulas that use dates and times can be a little confusing if Chapter 3: Date and Time Formulas In This Chapter Understanding dates and times in Excel Creating formulas that calculate elapsed dates and times Using the Date functions Using the Time functions Creating

More information

Project your expenses

Project your expenses Welcome to the Victory Cashflow worksheet. Spending just half an hour each month will ensure your budget is maintained and your finances are in order. The objective of this budget is to predict the future

More information

Assignment 5-2: Use a Checking Account Transaction Page

Assignment 5-2: Use a Checking Account Transaction Page YOU CAN DO IT! Assignment 5-2: Use a Checking Account Transaction Page Directions: Ron Ziesmer is a single 24-year-old who lives in Rochester, Minn. He recently opened a new checking account at the Rochester

More information

Practical Session 8 Time series and index numbers

Practical Session 8 Time series and index numbers 20880 21186 21490 21794 22098 22402 22706 23012 23316 23621 23924 24228 24532 24838 25143 25447 25750 26054 26359 26665 26969 27273 27576 Practical Session 8 Time series and index numbers In this session,

More information

True Potential Investor Overdue Payments. Contents

True Potential Investor Overdue Payments. Contents OVERDUE PAYMENTS Contents Overdue Payments 3 Pay Reference Periods 3 Pay Reference Period Start Dates - Examples: 3 Overdue Payments page 4 View Members 5 Upload Contribution 5 The Contributions Template

More information

IRA FMV and Contribution Report Wizard Instructions for Tax Reporting Service Clients

IRA FMV and Contribution Report Wizard Instructions for Tax Reporting Service Clients IRA FMV and Contribution Report Wizard Instructions for Tax Reporting Service Clients Wizard Purpose The IRA FMV and Contribution Report Wizard must be completed by financial organizations with a 5498

More information

FORECASTING & BUDGETING

FORECASTING & BUDGETING FORECASTING & BUDGETING W I T H E X C E L S S O L V E R WHAT IS SOLVER? Solver is an add-in that comes pre-built into Microsoft Excel. Simply put, it allows you to set an objective value which is subject

More information

You can use date and time values to stamp documents and to perform date and time

You can use date and time values to stamp documents and to perform date and time CHAPTER 15 Formatting and calculating date and time Understanding how Excel records dates and times...565 Entering dates and times....566 Formatting dates and times...571 Calculating with date and time...576

More information

Spreadsheet Directions

Spreadsheet Directions The Best Summer Job Offer Ever! Spreadsheet Directions Before beginning, answer questions 1 through 4. Now let s see if you made a wise choice of payment plan. Complete all the steps outlined below in

More information

Functions, Amortization Tables, and What-If Analysis

Functions, Amortization Tables, and What-If Analysis Functions, Amortization Tables, and What-If Analysis Absolute and Relative References Q1: How do $A1 and A$1 differ from $A$1? Use the following table to answer the questions listed below: A B C D E 1

More information

Calculate Sums, Rates, and Percentages in Excel: Student Workbook

Calculate Sums, Rates, and Percentages in Excel: Student Workbook 2016 Calculate Sums, Rates, and Percentages in Excel: Student Workbook Created by: EVA CONSTANTARAS / Independent Consultant & Data Scientist WITH SUPPORT FROM THE WORLD BANK AND THE UK DEPARTMENT FOR

More information

Excel Build a Salary Schedule 03/15/2017

Excel Build a Salary Schedule 03/15/2017 EXCEL BUILDING A SALARY SCHEDULE WEDNESDAY, 3/22/2017 3:15 PM TRACY S. LEED ACCOUNTS PAYABLE SUPERVISOR/SYSTEM ADMINISTRATOR CHESTER CO INTERMEDIATE UNIT 24 DOWNINGTOWN, PA PASBO 62 ND ANNUAL CONFERENCE

More information

EMPLOYMENT TAXES UNDERSTANDING AND PAYING PAYROLL TAXES

EMPLOYMENT TAXES UNDERSTANDING AND PAYING PAYROLL TAXES EMPLOYMENT TAXES UNDERSTANDING AND PAYING PAYROLL TAXES 2 STARTING A BUSINES RETIREMENT STRATEGIE OPERATING A BUSINES MARRIAG INVESTING TAX SMAR ESTATE PLANNIN 3 Understanding and Paying Payroll Taxes

More information

Master Budget Excel Project

Master Budget Excel Project Master Budget Excel Project Overview: In this project, you will prepare a master budget in an Excel spreadsheet for Cascade Products Company for the year 2018, based on the materials in Ch. 7 Master Budgeting.

More information

EMMS REALLOCATIONS USER INTERFACE GUIDE

EMMS REALLOCATIONS USER INTERFACE GUIDE EMMS REALLOCATIONS USER INTERFACE GUIDE VERSION: 3.05 DOCUMENT REF: PREPARED BY: MMSTDPD167 Information Management and Technology (IMT) DATE: 15 April 2011 Final Copyright Copyright 2011 Australian Energy

More information

Technology Assignment Calculate the Total Annual Cost

Technology Assignment Calculate the Total Annual Cost In an earlier technology assignment, you identified several details of two different health plans. In this technology assignment, you ll create a worksheet which calculates the total annual cost of medical

More information

INSURANCE Training Guide

INSURANCE Training Guide INSURANCE Training Guide Group Insurance premium calculator May 2015 Training Guide Group Insurance premium calculator Before you are able to use the Group Insurance premium calculator you must have: 1.

More information

Monash University School of Information Management and Systems IMS3001 Business Intelligence Systems Semester 1, 2004.

Monash University School of Information Management and Systems IMS3001 Business Intelligence Systems Semester 1, 2004. Exercise 7 1 : Decision Trees Monash University School of Information Management and Systems IMS3001 Business Intelligence Systems Semester 1, 2004 Tutorial Week 9 Purpose: This exercise is aimed at assisting

More information

FINANCE FOR EVERYONE SPREADSHEETS

FINANCE FOR EVERYONE SPREADSHEETS FINANCE FOR EVERYONE SPREADSHEETS Some Important Stuff Make sure there are at least two decimals allowed in each cell. Otherwise rounding off may create problems in a multi-step problem Always enter the

More information

ELECTRONIC BILL PAYMENT OVERVIEW

ELECTRONIC BILL PAYMENT OVERVIEW ELECTRONIC BILL PAYMENT Our online electronic bill payment system allows you to pay bills through our secure Internet server. You may schedule a payment; schedule recurring payments to be issued automatically;

More information

January 29. Annuities

January 29. Annuities January 29 Annuities An annuity is a repeating payment, typically of a fixed amount, over a period of time. An annuity is like a loan in reverse; rather than paying a loan company, a bank or investment

More information

Using Date and Date/Time in Formulas

Using Date and Date/Time in Formulas Using Date and Date/Time in Formulas Salesforce, Spring 17 @salesforcedocs Last updated: March 10, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

LEARNING TASKS. These tasks match pages 3-21 in Student Guide 5.

LEARNING TASKS. These tasks match pages 3-21 in Student Guide 5. STUDENT LEARNING PLAN Lesson 5-1: Checking Accounts OVERVIEW Nothing beats the feel of a crisp new $20 bill in your hand. But as you move toward the real world after high school, you ll run into situations

More information

Setting Financial Goals

Setting Financial Goals Setting Financial Goals FDIC Money Smart for Young Adults Building: Knowledge, Security, Confidence Purpose Learn how to manage money by preparing a personal spending plan Identify ways to decrease spending

More information

Real Estate Private Equity Case Study 3 Opportunistic Pre-Sold Apartment Development: Waterfall Returns Schedule, Part 1: Tier 1 IRRs and Cash Flows

Real Estate Private Equity Case Study 3 Opportunistic Pre-Sold Apartment Development: Waterfall Returns Schedule, Part 1: Tier 1 IRRs and Cash Flows Real Estate Private Equity Case Study 3 Opportunistic Pre-Sold Apartment Development: Waterfall Returns Schedule, Part 1: Tier 1 IRRs and Cash Flows Welcome to the next lesson in this Real Estate Private

More information

By-Laws Revision Worksheet

By-Laws Revision Worksheet By-Laws Revision Worksheet The new elks.org By-Laws Revision System makes it easy to submit a revision to your local lodge By-Laws. Revisions may be submitted online by your local Lodge Secretary, or by

More information

Purchase Price Allocation, Goodwill and Other Intangibles Creation & Asset Write-ups

Purchase Price Allocation, Goodwill and Other Intangibles Creation & Asset Write-ups Purchase Price Allocation, Goodwill and Other Intangibles Creation & Asset Write-ups In this lesson we're going to move into the next stage of our merger model, which is looking at the purchase price allocation

More information

Event A Value. Value. Choice

Event A Value. Value. Choice Solutions.. No. t least, not if the decision tree and influence diagram each represent the same problem (identical details and definitions). Decision trees and influence diagrams are called isomorphic,

More information

Creating a Rolling Income Statement

Creating a Rolling Income Statement Creating a Rolling Income Statement This is a demonstration on how to create an Income Statement that will always return the current month s data as well as the prior 12 months data. The report will be

More information

LEARNING TASKS These tasks match pages 3-21 in Student Guide 5.

LEARNING TASKS These tasks match pages 3-21 in Student Guide 5. STUDENT LEARNING PLAN Lesson 5-1: Checking Accounts OVERVIEW Nothing beats the feel of a crisp new $20 bill in your hand. But as you move toward the real world after high school, you ll run into situations

More information

A. A spreadsheet file contains at least one or more worksheets. A worksheet is a single page in a spreadsheet file.

A. A spreadsheet file contains at least one or more worksheets. A worksheet is a single page in a spreadsheet file. Section 7: Spreadsheets Check your progress 1 1. Explain the difference between a spreadsheet and a worksheet. A spreadsheet file contains at least one or more worksheets. A worksheet is a single page

More information

COPYRIGHTED MATERIAL. The Check Is in the Mail. Get Paid to Invest with Dividends

COPYRIGHTED MATERIAL. The Check Is in the Mail. Get Paid to Invest with Dividends Chapter One The Check Is in the Mail Get Paid to Invest with Dividends T HE CONTROLLER OF MY COMPANY IS NAMED PAM. Besides being a great controller, Pam has a great smile, one of those toothy ones that

More information

Pre-Algebra, Unit 7: Percents Notes

Pre-Algebra, Unit 7: Percents Notes Pre-Algebra, Unit 7: Percents Notes Percents are special fractions whose denominators are 100. The number in front of the percent symbol (%) is the numerator. The denominator is not written, but understood

More information

Overview. It is basically a History report!

Overview. It is basically a History report! General Ledger Overview The Service Assistant s General Ledger report presents a synopsis of all transactions during aspecified period of time, giving dollar amounts posted as both a credit and debit.

More information

Unit 8 Notes: Solving Quadratics by Factoring Alg 1

Unit 8 Notes: Solving Quadratics by Factoring Alg 1 Unit 8 Notes: Solving Quadratics by Factoring Alg 1 Name Period Day Date Assignment (Due the next class meeting) Tuesday Wednesday Thursday Friday Monday Tuesday Wednesday Thursday Friday Monday Tuesday

More information

Exploring Microsoft Office Excel 2007 Comprehensive Grauer Scheeren Mulbery Second Edition

Exploring Microsoft Office Excel 2007 Comprehensive Grauer Scheeren Mulbery Second Edition Exploring Microsoft Office Excel 2007 Comprehensive Grauer Scheeren Mulbery Second Edition Pearson Education Limited Edinburgh Gate Harlow Essex CM20 2JE England and Associated Companies throughout the

More information

Excel-Based Budgeting for Cash Flows: Cash Is King!

Excel-Based Budgeting for Cash Flows: Cash Is King! BUDGETING Part 4 of 6 Excel-Based Budgeting for Cash Flows: Cash Is King! By Teresa Stephenson, CMA, and Jason Porter Budgeting. It seems that no matter how much we talk about it, how much time we put

More information

HARVEST MODELS INTRODUCTION. Objectives

HARVEST MODELS INTRODUCTION. Objectives 29 HARVEST MODELS Objectives Understand the concept of recruitment rate and its relationship to sustainable harvest. Understand the concepts of maximum sustainable yield, fixed-quota harvest, and fixed-effort

More information

FINANCIAL DECISION RULES FOR PROJECT EVALUATION SPREADSHEETS

FINANCIAL DECISION RULES FOR PROJECT EVALUATION SPREADSHEETS FINANCIAL DECISION RULES FOR PROJECT EVALUATION SPREADSHEETS This note is some basic information that should help you get started and do most calculations if you have access to spreadsheets. You could

More information

MARCH Tax Time: 4 Ways to Increase Your Refund

MARCH Tax Time: 4 Ways to Increase Your Refund MARCH 2019 Tax Time: 4 Ways to Increase Your Refund Date/time to schedule: Tuesday, March 5 @ 10:45 a.m. Preheader Text: NOW is the time to make changes. Facebook Share Text: While your 2019 tax return

More information

* The Unlimited Plan costs $100 per month for as many minutes as you care to use.

* The Unlimited Plan costs $100 per month for as many minutes as you care to use. Problem: You walk into the new Herizon Wireless store, which just opened in the mall. They offer two different plans for voice (the data and text plans are separate): * The Unlimited Plan costs $100 per

More information

Setting Financial Goals

Setting Financial Goals Setting Financial Goals FDIC Money Smart for Young Adults Building: Knowledge, Security, Confidence Objectives Track daily spending habits Prepare a personal spending plan or budget to estimate monthly

More information

Decumulation Strategy for Retirees: Which Assets to Liquidate

Decumulation Strategy for Retirees: Which Assets to Liquidate Decumulation Strategy for Retirees: Which Assets to Liquidate Charles S. Yanikoski When it s time to decumulate, most people have multiple assets from which they can draw. So which asset(s) should go first?

More information

Decision Trees: Booths

Decision Trees: Booths DECISION ANALYSIS Decision Trees: Booths Terri Donovan recorded: January, 2010 Hi. Tony has given you a challenge of setting up a spreadsheet, so you can really understand whether it s wiser to play in

More information

ExcelBasics.pdf. Here is the URL for a very good website about Excel basics including the material covered in this primer.

ExcelBasics.pdf. Here is the URL for a very good website about Excel basics including the material covered in this primer. Excel Primer for Finance Students John Byrd, November 2015. This primer assumes you can enter data and copy functions and equations between cells in Excel. If you aren t familiar with these basic skills

More information

CAAT Pensionable Service Calculation (FT) Instructions and Examples

CAAT Pensionable Service Calculation (FT) Instructions and Examples Pensionable Service Pensionable Service is the service reported to the CAAT Pension Plan, and is used in the calculation of pension benefits and Pension Adjustments (PAs) for T4 reporting. Pensionable

More information

In this chapter: Budgets and Planning Tools. Configure a budget. Report on budget versus actual figures. Export budgets.

In this chapter: Budgets and Planning Tools. Configure a budget. Report on budget versus actual figures. Export budgets. Budgets and Planning Tools In this chapter: Configure a budget Report on budget versus actual figures Export budgets Project cash flow Chapter 23 479 Tuesday, September 18, 2007 4:38:14 PM 480 P A R T

More information

How to Use the Savvy Social Security Calculators

How to Use the Savvy Social Security Calculators appendix a How to Use the Savvy Social Security Calculators The Savvy Social Security Calculators on the enclosed CD utilize Excel spreadsheets to help you run various scenarios when doing Social Security

More information

Austin Independent School District

Austin Independent School District Tab 1 Contact Information Tab 2 Summary of Debt Obligations Tab 3 Individual Debt Obligations Tab 4 Additional Notes Tab 5 Optional Reporting Tab 6 Instructions and Glossary End of Worksheet Per House

More information

Employment Application Please complete the form below to apply for a position with Burke's Pub or Personal Information

Employment Application Please complete the form below to apply for a position with Burke's Pub or Personal Information Employment Application Please complete the form below to apply for a position with Burke's Pub or 1912. NOTICE: Applicant should read the following information very carefully before filling out any of

More information

Reporting Average Annual Returns

Reporting Average Annual Returns Reporting Average Annual Returns How complicated could this be? In the investment world I hear this term used all of the time, average annual returns. I take it for granted that the one providing the information

More information

In Chapter 2, a notional amortization schedule was created that provided a basis

In Chapter 2, a notional amortization schedule was created that provided a basis CHAPTER 3 Prepayments In Chapter 2, a notional amortization schedule was created that provided a basis for cash flowing into a transaction. This cash flow assumes that every loan in the pool will make

More information

QuickSuper. Paying for contributions.

QuickSuper. Paying for contributions. QuickSuper Paying for contributions www.clearinghouse.australiansuper.com QuickSuper Paying for contributions Document History Date Description 15 May 2011 Initial release to include Direct Debit and EFT

More information

Spreadsheet File Transfer User Guide. FR 2028B Survey of Terms of Bank Lending to Farmers

Spreadsheet File Transfer User Guide. FR 2028B Survey of Terms of Bank Lending to Farmers Spreadsheet File Transfer User Guide FR 2028B Survey of Terms of Bank Lending to Farmers FR 2028S Prime Rate Supplement to Survey of Terms of Lending STATISTICS FUNCTION AUTOMATION SUPPORT October 30,

More information

22. Construct a bond amortization table for a $1000 two-year bond with 7% coupons paid semi-annually bought to yield 8% semi-annually.

22. Construct a bond amortization table for a $1000 two-year bond with 7% coupons paid semi-annually bought to yield 8% semi-annually. Chapter 6 Exercises 22. Construct a bond amortization table for a $1000 two-year bond with 7% coupons paid semi-annually bought to yield 8% semi-annually. 23. Construct a bond amortization table for a

More information

more information Upload a contribution file

more information Upload a contribution file Upload a contribution file more information About the Microsoft Excel contribution process Upload a contribution file is an online process that allows you to submit Microsoft Excel (Excel) contribution

More information

Newark Income Tax Office Payroll Withholding

Newark Income Tax Office Payroll Withholding Newark Income Tax Office Payroll Withholding Filed Period Must be postmarked on or before Pay Period 1st 05-01-17 January 1 -March 31 2nd 07-31-17 April 1 - June 30 3rd 10-31-17 July 1 - September 30 4th

More information

A Note on Implementing the Fader and Hardie CDNOW Model

A Note on Implementing the Fader and Hardie CDNOW Model A Note on Implementing the Fader and Hardie CDNOW Model Peter S. Fader and Bruce G. S. Hardie 1 1. Introduction (August 2001) This note describes how to implement Fader and Hardie s (2001) stochastic modelof

More information

P&C Rate Data Collection and Management System. PCRDCMS Rate Collection User Manual

P&C Rate Data Collection and Management System. PCRDCMS Rate Collection User Manual State of Florida Department of Financial Services Office of Insurance Regulation P&C Rate Data Collection and Management System (PCRDCMS) PCRDCMS Rate Collection User Manual Author: Vendor: Version: Jon

More information

Introduction to Basic Excel Functions and Formulae Note: Basic Functions Note: Function Key(s)/Input Description 1. Sum 2. Product

Introduction to Basic Excel Functions and Formulae Note: Basic Functions Note: Function Key(s)/Input Description 1. Sum 2. Product Introduction to Basic Excel Functions and Formulae Excel has some very useful functions that you can use when working with formulae. This worksheet has been designed using Excel 2010 however the basic

More information

Instructions: DIV Tax Reporting Data 1

Instructions: DIV Tax Reporting Data 1 Instructions: 2017 1099-DIV Tax Reporting Data 1 I. How to Sign In II. III. IV. How to Edit the Online Spreadsheet How to Save the Spreadsheet as a Draft How to Submit the Final Spreadsheet V. FAQs and

More information

Stock Market Project!

Stock Market Project! Stock Market Project! How do stock brokers and financial analysts determine what stocks to buy? What do they investigate when looking at a company? As you work through the activities, you will collect

More information

Financing Feedbacks FORECASTING FINANCIAL STATEMENTS WITH FINANCING FEEDBACKS AND ALTERNATIVE SOURCES OF FUNDS

Financing Feedbacks FORECASTING FINANCIAL STATEMENTS WITH FINANCING FEEDBACKS AND ALTERNATIVE SOURCES OF FUNDS W E B E X T E N S I O N9A Financing Feedbacks In Chapter 9, we forecasted financial statements under the assumption that the firm s interest expense can be estimated as the product of the prior year s

More information

The Maintenance Deductible in Practice. Paul Stanley QC. The words maintenance deductible do not appear anywhere in

The Maintenance Deductible in Practice. Paul Stanley QC. The words maintenance deductible do not appear anywhere in The Maintenance Deductible in Practice Paul Stanley QC I. What is the Maintenance Deductible? The words maintenance deductible do not appear anywhere in the Bermuda Form. They are used as jargon to describe,

More information

Business Mathematics (BK/IBA) Quantitative Research Methods I (EBE) Computer tutorial 4

Business Mathematics (BK/IBA) Quantitative Research Methods I (EBE) Computer tutorial 4 Business Mathematics (BK/IBA) Quantitative Research Methods I (EBE) Computer tutorial 4 Introduction In the last tutorial session, we will continue to work on using Microsoft Excel for quantitative modelling.

More information

Chapter 13 Payroll Accounting, Taxes, and Reports

Chapter 13 Payroll Accounting, Taxes, and Reports Chapter 13 Payroll Accounting, Taxes, and Reports -- The payroll register and employee earnings records provide all the payroll information needed to prepare a payroll and payroll tax reports. Journal

More information

Data Science Essentials

Data Science Essentials Data Science Essentials Probability and Random Variables As data scientists, we re often concerned with understanding the qualities and relationships of a set of data points. For example, you may need

More information

As a function of the stock price on the exercise date, what do the payoffs look like for European calls and puts?

As a function of the stock price on the exercise date, what do the payoffs look like for European calls and puts? Pricing stock options This article was adapted from Microsoft Office Excel 2007 Data Analysis and Business Modeling by Wayne L. Winston. Visit Microsoft Learning to learn more about this book. This classroom-style

More information

Getting Started: Defines terms that are important to know for building a yield curve.

Getting Started: Defines terms that are important to know for building a yield curve. Word Capital Open Source Asset Management 408 West 14 th Street, 2F New York, NY 10014 www.word.am www.wordcapital.com US Yield Curve Tutorial Jake Roth Caroline Davidson Tools Needed 1 Microsoft Excel

More information

To complete this workbook, you will need the following file:

To complete this workbook, you will need the following file: CHAPTER 7 Excel More Skills 11 Create Amortization Tables Amortization tables track loan payments for the life of a loan. Each row in an amortization table tracks how much of a payment is applied to the

More information

Module 6 - Volatility Lab - 1

Module 6 - Volatility Lab - 1 Module 6 - Volatility Lab TOPICS COVERED: 1) EHA Volatility Lab (0:07) 2) Review Formulas for Volatility (2:15) 3) CalculationCount UDF (9:15) 4) Other Routines (10:46) 5) Avoid Volatile Formulas! (12:02)

More information

Diocesan Cashbook v3.1

Diocesan Cashbook v3.1 Diocesan Cashbook v3.1 1. About the Diocesan Cashbook... 2 2. Cashbook Layout... 2 2.1 Main Menu...2 2.2 Transactions...3 2.3 Previous year...3 New for version 3.1: 2.4 Fees Summary...3 2.5 Balances...3

More information

Budget Module Overheads

Budget Module Overheads Option 10 Budgeting Page 1 Budget Module s Option 10 Budgeting Page 2 What is a Budget? Step by Step plan for meeting expenses in a given period of time. Budget Components. What is Income? What are Expenses?

More information

WHO IS igroup? igroup is a National Marketing Organization built to market life insurance, annuities, and Med Supps. Home Office Fairfax, Virginia

WHO IS igroup? igroup is a National Marketing Organization built to market life insurance, annuities, and Med Supps. Home Office Fairfax, Virginia WHO IS igroup? igroup is a National Marketing Organization built to market life insurance, annuities, and Med Supps. Home Office Fairfax, Virginia Founded in 1996 We help agents grow their sales through

More information

Logic, and the IF Function

Logic, and the IF Function Comparison Operators Logic, and the IF Function You can use comparison operators to compare two numbers, functions, formulas, or labels and return either true or false. Examples include: =2*3=4+2 =A1>0

More information

Excel Tips for Compensation Practitioners Weeks 5 to 8 Working with Dates

Excel Tips for Compensation Practitioners Weeks 5 to 8 Working with Dates Excel Tips for Compensation Practitioners Weeks 5 to 8 Working with Dates Week 5 Converting Text Dates to Formatted Dates This month we will focus on working with dates. Some of the most frequently asked

More information

LENDER SOFTWARE PRO USER GUIDE

LENDER SOFTWARE PRO USER GUIDE LENDER SOFTWARE PRO USER GUIDE You will find illustrated step-by-step examples in these instructions. We recommend you print out these instructions and read at least pages 4 to 20 before you start using

More information

Basic Current Account Information and Specific Conditions

Basic Current Account Information and Specific Conditions Basic Current Account Information and Specific Conditions Current Accounts Information Contents The Basic Current Account 03 Opening your Basic Current Account 03 What to expect once we have opened your

More information

Chapter 6: Supply and Demand with Income in the Form of Endowments

Chapter 6: Supply and Demand with Income in the Form of Endowments Chapter 6: Supply and Demand with Income in the Form of Endowments 6.1: Introduction This chapter and the next contain almost identical analyses concerning the supply and demand implied by different kinds

More information

Notice how your Expenses are calculated to a full year for your budget.

Notice how your Expenses are calculated to a full year for your budget. Help Notes ~ Page 1 of 5 Spending Plan Worksheet The Spending Plan Worksheet is the first step. This is used to create up to 30 Sub-Account Names, Expense Amounts and Deposit Goals. The information you

More information

Loan and Bond Amortization

Loan and Bond Amortization Loan and Bond Amortization 5 chapter In this chapter you will learn: How to use the payment function to calculate payments to retire a loan How to create a loan amortization schedule How to use a what-if

More information

The Best Cell Phone Plan

The Best Cell Phone Plan Overview Activity ID: 8605 Math Concepts Materials Students will compare two cell phone plans and determine linear functions TI-30XS which plan is better for a specific situation. They will utilize graphing

More information

OVERVIEW GUIDE TO HOME COUNSELOR ONLINE NATIONAL FORECLOSURE MITIGATION COUNSELING (NFMC) FEATURES

OVERVIEW GUIDE TO HOME COUNSELOR ONLINE NATIONAL FORECLOSURE MITIGATION COUNSELING (NFMC) FEATURES OVERVIEW GUIDE TO HOME COUNSELOR ONLINE NATIONAL FORECLOSURE MITIGATION COUNSELING (NFMC) FEATURES WHO SHOULD USE THIS OVERVIEW GUIDE? WHAT IS NFMC? This overview guide contains information for Home Counselor

More information

The values within the DMS can be held as consolidated totals if required, as any individual items can be extracted from the Service Plan System.

The values within the DMS can be held as consolidated totals if required, as any individual items can be extracted from the Service Plan System. VERSION 3.1.1 The principle idea of the accounting system is to mirror the balance sheet values held within the edynamix Service Plan system with those held on the Dealer Management System (DMS) balance

More information

Securities Lending Reporting. Submitting Borrowed, Loaned and Committed Securities information via ASX Online

Securities Lending Reporting. Submitting Borrowed, Loaned and Committed Securities information via ASX Online Submitting Borrowed, Loaned and Committed Securities information via ASX Online USER NOTES MAY 2016 CONTENTS Overview This guide gives an overview of the securities lending reporting facility to Participants

More information

Project Budgeting Release 2015

Project Budgeting Release 2015 Project Budgeting Release 2015 Disclaimer This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web site references, may change without notice.

More information

DUALITY AND SENSITIVITY ANALYSIS

DUALITY AND SENSITIVITY ANALYSIS DUALITY AND SENSITIVITY ANALYSIS Understanding Duality No learning of Linear Programming is complete unless we learn the concept of Duality in linear programming. It is impossible to separate the linear

More information

AIN2601 FASSET Class. - AIN2601 Lecturers. Session 03

AIN2601 FASSET Class. - AIN2601 Lecturers. Session 03 AIN2601 FASSET Class - AIN2601 Lecturers Session 03 FINAL MARK CALCULATION Year mark: 25% Exam mark: 75% Final mark: 100% You need a final mark of 50% to pass. Supplementary students: You need a final

More information

IB Interview Guide: Case Study Exercises Three-Statement Modeling Case (30 Minutes)

IB Interview Guide: Case Study Exercises Three-Statement Modeling Case (30 Minutes) IB Interview Guide: Case Study Exercises Three-Statement Modeling Case (30 Minutes) Hello, and welcome to our first sample case study. This is a three-statement modeling case study and we're using this

More information

Fiscal Year-End 2018 Issue

Fiscal Year-End 2018 Issue HOME / NEWS / Fiscal Year-End 2018 Issue April 19, 2018 Harvard's fiscal year 2018 will end on Saturday, June 30, 2018. As in the past, the University will close the books through a series of steps called

More information

Week: 3 Function(s): Express Actions and Time Relationships 6.19 Discuss or create a plan

Week: 3 Function(s): Express Actions and Time Relationships 6.19 Discuss or create a plan Theme: Our Community Topic: Shopping Open the Lesson Daily Objective 5 minutes Week: 3 Function(s): Express Actions and Time Relationships 6.19 Discuss or create a plan Level: Intermediate Day 1 Day 2

More information

BUDGET DEVELOPMENT INSTRUCTION MANUAL

BUDGET DEVELOPMENT INSTRUCTION MANUAL BUDGET DEVELOPMENT INSTRUCTION MANUAL 1 Budget Office Adminstration Bldg Sam Houston State University March, 2015 Table of Contents Item Page Budget Process System Overview 3 Budget Reports 9 Salary Planner

More information

RD Tax. Keeping Your Tax Records

RD Tax. Keeping Your Tax Records RD Tax Keeping Your Tax Records When it comes to your taxes, good records are the best protection you can have if the government decides to audit your returns. But just as important as your effective recordkeeping

More information