Section 8. Topics Covered

Size: px
Start display at page:

Download "Section 8. Topics Covered"

Transcription

1 Section 8 Topics Covered " The =IF() function " The =OR() function " The =AND() function " The =NOT() function " The =PMT() function " The =FV() function Time Required: 40 Mins 8-1

2 The =IF() Function The =IF() function can be used to check whether a specific condition is true or not, returning one result if the condition is true, and another if it's false. The syntax of the =IF() function is =IF(condition, true value, false value) Suppose you want to pay a 50 bonus to all sales staff who have exceeded their 10,000 target. To do this you would check the total sales figures to see who qualifies. If a rep's total sales figure is greater than 10,000, the bonus would be paid. Otherwise, the rep doesn't qualify for the bonus. This example is illustrated below. Look at the formula that has been entered into cell C4. The formula is constructed as follows: Condition Result if false =IF(B4>10000, 50, 0) Result if true 8-2

3 The =IF() Function The results for the example shown on the previous page are illustrated below. Text Results Should you want to display text as one or both of the results, you would simply type the text (enclosed in " quotation marks) into the formula as follows: =IF(B4>10000, "Yes", "No") In this example, the word Yes would be displayed for each sales rep who qualifies for a bonus, and the word No for each sales rep who doesn't. Conditional Operators The example used above uses the > (greater than) operator. The condition within the =IF() function can incorporate any of the standard operators such as = (equal to), <> (not equal to), <= (less than or equal to), and so on. 8-3

4 The =IF() Function Creating An Embedded =IF() Formula When testing conditions on your worksheet, you may find that from time to time you need to check two or more related conditions. For example, once you have found that a sales rep has met his target, you may want to check by how much, awarding a higher bonus for exceeding the target by more than a set amount. To do this, you can create a formula that contains more than one =IF() function. The illustration below shows the formula required to award a 50 bonus for exceeding the target, but a 100 bonus for exceeding it by more than 5, Check this condition if true, check this condition if first condition not true, show 0 =IF(B4>C4,IF(B4>C4+5000,100,50),0) 4....if second condition is true, show if second condition is false, show 50 Exercise Open the Bonus workbook held in the Excel 2000 Intro Exercises folder. 8-4

5 Exercise In cell D4, enter the formula =IF(B4>=C4,"Yes","No") then copy the formula for each salesperson. This will test whether or not each person met their target. 3. Follow the instructions below to calculate how much of a bonus each sales rep is due, based on these conditions:! If the sales rep has earned more than 12,000 in commission, a 100 bonus is payable.! If the sales rep has earned less than 12,000 but more than 8,000 in commission, a 50 bonus is due.! If the sales rep has earned 8,000 or less in commission, no bonus is due. Into cell F4 enter the formula =IF(E4>12000,100,IF(E4>8000,50,0)) Copy the formula down column F. 4. Enter a formula into column G to calculate the total amount payable to each sales rep. 5. Save the changes to the workbook and then close it. 8-5

6 Logical Functions Earlier you learned how to use the =IF() function. Logical functions such as =IF() are used to test whether a given condition is true or false. Other logical functions are described on the next few pages. The =OR() Function The =OR() function's syntax is =OR(logical1,logical2,...) This function will return a value of TRUE if one or more arguments (logical1, logical2, and so on) are true. Otherwise, the result will be FALSE. In the example below, the result would be TRUE, as at least one of the arguments is true. =OR(1+1=2, 2+2=5) The =AND() Function The =AND() function's syntax is =AND(logical1,logical2,...) This function will return a value of TRUE if each of the arguments (logical1, logical2, and so on) is true. Otherwise, the result will be FALSE. In the example below, the result would be FALSE, as at least one of the arguments is not true. =AND(1+1=2, 2+2=5) 8-6

7 Logical Functions The =NOT() Function The =NOT() function's syntax is =NOT(logical) This function will return a value of TRUE if the argument (logical) is false. Otherwise, the result will be FALSE. In the example below, the result would be TRUE: =NOT(2+2=5) Calculating Using Logical Results The results TRUE and FALSE are stored as 1 and 0 respectively. This means that you can use the results for calculations. You could, for example, calculate the total number of TRUE conditions. You cannot, however, simply add all the TRUE results: you must first multiply them by 1 to return an integer that can be used in the calculation. For instance, at step 6 in the following exercise you will calculate the number of branches that hit target. Each branch that did hit target will have a TRUE result in column D, previously calculated at step 3. Before the TRUE results can be counted, they must be multiplied by

8 Exercise Open the workbook Targets held in the Excel 2000 Intro Exercises folder. 2. Column D is to show whether each branch met its target. Therefore, enter the formula =C3>B3 into cell D3. This formula returns a value of TRUE as the North branch did hit its target. 3. Copy the formula for the other branches. 4. To answer the question Did all branches hit target? enter the formula =AND(D3:D5) into cell C7. As not every value in the range is not TRUE, the result is FALSE. 5. To answer the question Did any of the 3 branches hit target? enter the formula =OR(D3:D5) into cell C8. Because at least one of the values in the range is TRUE, the result is TRUE. 6. Follow the instructions below to calculate the number of branches that hit target. In cell E3, enter a formula to multiply the result in cell D3 by 1 then copy the formula for the other branches. Enter a formula that will show the total number of branches that hit target into cell C9. 7. Save the changes to the worksheet and then close it. 8-8

9 The =PMT() Function This function is used to calculate the payments on a loan at a specified interest rate over a given term. The syntax of the function is: =PMT(Rate,Nper,Pv,Fv,Type) Note: The arguments shown in italic are optional, i.e. they don't have to be specified. The function's arguments are explained below. Rate The interest rate for the loan. For example, if the interest rate is 10% per annum and the payments will be made annually, the value entered into the formula should be 10%. If, however, the interest rate is 10% per annum and the payments will be made monthly, the value entered into the formula should be 10%/12. Nper The number of periods over which the loan will be repaid. For example, if the loan is to be repaid over 24 months, the value entered into the formula should be 24. Pv Fv The total value of the loan. If you want to attain a cash balance at the end of the loan period, the value should be entered into the formula. Type Type can be either 0 or 1. If the payments will be made at the beginning of the specified period, enter 1. If the payments will be made at the end of the month, either enter 0 or don't enter this argument. 8-9

10 Exercise Open the workbook LoanCalc held in the Excel 2000 Intro Exercises folder. 2. Following the instructions below, use =PMT() function to calculate the monthly repayments on a car loan of 4,000 over 2 years at an interest rate of 8.5% per annum. Rather than enter the formula directly into the cell, you'll make use of the formula palette. Select cell B8 then click on the Edit Formula. Select More Functions from the Function drop-down list. The Paste Function dialogue box is displayed. From the Function category list box, choose Financial, then select PMT from the Function name list box. Click OK. 8-10

11 Exercise 8-3 The formula palette expands to display the function's arguments. The first argument is Rate. As the interest rate is held in cell B5, either type B5 into the Rate text box, or click on cell B5 on the worksheet, shrinking the dialogue box if necessary. As the interest rate in cell B5 is an annual interest rate, and you want monthly payments, it has to be divided by 12. So, type /12 into the Rate text box so that the entry reads B5/12. Press [TAB] to move to the Nper (number of periods) argument. As cell B6 holds the data for this argument, either type B6 into the text box or click on cell B6, then press [TAB] to move to the Pv argument. The amount of the loan (Pv) is held in cell B4, so either type B4 into the text box or click on cell B4. The formula palette will now look like this: Result of the formula as it currently stands Click OK to display the result of your formula, which is

12 Exercise Modify the values in cells B4 and B6 so that the loan period is 3 years and the amount is 6,000. The result of the formula changes to Change the formula so that it calculates the monthly payments for a loan of 1,000 to be repaid over 18 months. The result of the formula becomes Save the changes to the worksheet then close it. 8-12

13 The =FV() Function This function is used to calculate the redemption value of an investment assuming a series of fixed payments at a fixed interest rate. The syntax of the function is: =FV(Rate,Nper,Pmt,Pv,Type) Note: The arguments shown in italic are optional, i.e. they don't have to be specified. The function's arguments are explained below. Rate The interest rate for the investment. For example, if the annual interest rate is 11% and the payments will be made annually, the value entered into the formula should be 10%. If, however, the interest rate is 10% per annum and the payments will be made monthly, the value entered into the formula should be 10%/12. Nper The number of periods over which the investment payments will be made. For example, a pension that is to be paid monthly over 30 years would be entered as 360. Pmt Pv The amount your will be paying into the investment fund per period, e.g. monthly/annually. Is the present value, or a lump sum amount that the series of future payments is worth now. Type Type can be either 0 or 1. If the payments will be made at the beginning of the specified period, enter 1. If the payments will be made at the end of the month, either enter 0 or don't enter this argument. 8-13

14 Exercise Open the worksheet Pension.xls held in the Excel 2000 Intro Exercises folder. 2. Using the =FV() function, calculate the redemption value of the pension fund and show in B7. 3. Change the annual contribution to 4000 to see the affect of the redemption value. 4. Save the changes and close the worksheet and close it. 8-14

15 Questions and Answers 1. If cell B4 contains the value 500, what is the result of the following formula? =IF(B4>100,20,0) 2. If the value in cell A10 is 1000, what is the result of the following formula? =IF(A10>10000,500,IF(A10>5000,50,0)) 3. Write the results of these formulas in the spaces provided. =OR(TRUE,TRUE,FALSE) =AND(FALSE,FALSE,FALSE) 4. In the space below write the =PMT() function required to calculate the quarterly payments for a loan of 20,000 over 3 years given an interest rate of 7%. 8-15

16 A 2Z Index A And Function, 8-6 C Conditional Operators, 8-3 F Functions And, 8-6 Fv, 8-13 IF, 8-2, 8-4 logical, 8-7 Not, 8-7 Or, 8-6 Pmt, 8-9 Fv Function, 8-13 I IF Function, 8-2 embedded, 8-4 L Logical Functions, 8-7 N Not Function, 8-7 O Or Function, 8-6 P Pmt Function, 8-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 8-16

rate nper pmt pv Interest Number of Payment Present Future Rate Periods Amount Value Value 12.00% 1 0 $100.00 $112.00

rate nper pmt pv Interest Number of Payment Present Future Rate Periods Amount Value Value 12.00% 1 0 $100.00 $112.00 In Excel language, if the initial cash flow is an inflow (positive), then the future value must be an outflow (negative). Therefore you must add a negative sign before the FV (and PV) function. The inputs

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

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

Commonly Used Excel Formulas

Commonly Used Excel Formulas Microsoft Excel 2007 Advanced Formulas Windows XP Look Up Values in a List of Data: Commonly Used Excel Formulas Let's say you want to look up an employee's phone extension by using their badge number

More information

How To Use Excel To Compute Compound Interest

How To Use Excel To Compute Compound Interest Excel has several built in functions for working with compound interest and annuities. To use these functions, we ll start with a standard Excel worksheet. This worksheet contains the variables used throughout

More information

TVM Functions in EXCEL

TVM Functions in EXCEL TVM Functions in EXCEL Order of Variables = (Rate, Nper, Pmt, Pv, Fv,Type, Guess) Future Value = FV(Rate,Nper,Pmt,PV,Type) Present Value = PV(rate,nper,pmt,fv,type) No. of Periods = NPER(rate, pmt, pv,

More information

Commission Formula. Value If True Parameter Value If False Parameter. Logical Test Parameter

Commission Formula. Value If True Parameter Value If False Parameter. Logical Test Parameter Excel Review This review uses material and questions from Practice Excel Exam 1 found on the Lab Exam 2 Study Guide webpage. Print out a copy of Practice Excel Exam 1. Download the Practice Excel Exam

More information

Excel s Business Tools: What-If Analysis

Excel s Business Tools: What-If Analysis Excel s Business Tools: Introduction is an important aspect of planning and managing any business. Understanding the implications of changes in the factors that influence your business is crucial when

More information

EXCEL PREREQUISITES SOLVING TIME VALUE OF MONEY PROBLEMS IN EXCEL

EXCEL PREREQUISITES SOLVING TIME VALUE OF MONEY PROBLEMS IN EXCEL CHAPTER 3 Smart Excel Appendix Use the Smart Excel spreadsheets and animated tutorials at the Smart Finance section of http://www.cengage.co.uk/megginson. Appendix Contents Excel prerequisites Creating

More information

PV Tutorial Using Excel

PV Tutorial Using Excel EYK 15-3 PV Tutorial Using Excel TABLE OF CONTENTS Introduction Exercise 1: Exercise 2: Exercise 3: Exercise 4: Exercise 5: Exercise 6: Exercise 7: Exercise 8: Exercise 9: Exercise 10: Exercise 11: Exercise

More information

Compounding Quarterly, Monthly, and Daily

Compounding Quarterly, Monthly, and Daily 126 Compounding Quarterly, Monthly, and Daily So far, you have been compounding interest annually, which means the interest is added once per year. However, you will want to add the interest quarterly,

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

Calculating Loan Payments

Calculating Loan Payments IN THIS CHAPTER Calculating Loan Payments...............1 Calculating Principal Payments...........4 Working with Future Value...............7 Using the Present Value Function..........9 Calculating Interest

More information

ROUND(cell or formula, 2)

ROUND(cell or formula, 2) There are many ways to set up an amortization table. This document shows how to set up five columns for the payment number, payment, interest, payment applied to the outstanding balance, and the outstanding

More information

PMT. 0 or omitted At the end of the period 1 At the beginning of the period

PMT. 0 or omitted At the end of the period 1 At the beginning of the period PMT Calculates the payment for a loan based on constant payments and a constant interest rate. PMT(rate,nper,pv,fv,type) For a more complete description of the arguments in PMT, see the PV function. Rate

More information

2014 Securexam Guide Tips

2014 Securexam Guide Tips 2014 Securexam Guide Tips For candidates planning to write the UFE or regional evaluations Chartered Professional Accountants of Canada, CPA Canada, CPA are trademarks and/or certification marks of the

More information

2015 SECUREXAM TIPS GUIDE

2015 SECUREXAM TIPS GUIDE 2015 SECUREXAM TIPS GUIDE Chartered Professional Accountants of Canada, CPA Canada, CPA are trademarks and/or certification marks of the Chartered Professional Accountants of Canada. 2015, Chartered Professional

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

Lease Analysis Tools

Lease Analysis Tools Lease Analysis Tools 2009 ELFA Lease Accountants Conference Presenter: Bill Bosco, Pres. wbleasing101@aol.com Leasing 101 914-522-3233 Overview Math of Finance Theory Glossary of terms Common calculations

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

Lesson TVM-10-040-xx Present Value Ordinary Annuity Clip 01

Lesson TVM-10-040-xx Present Value Ordinary Annuity Clip 01 - - - - - - Cover Page - - - - - - Lesson TVM-10-040-xx Present Value Ordinary Annuity Clip 01 This workbook contains notes and worksheets to accompany the corresponding video lesson available online at:

More information

9-17a Tutorial 9 Practice Review Assignment

9-17a Tutorial 9 Practice Review Assignment 9-17a Tutorial 9 Practice Review Assignment Data File needed for the Review Assignments: Restaurant.xlsx Sylvia has some new figures for the business plan for Jerel's. She has received slightly better

More information

NOTE: All of the information contained in this file has been collected from the various HELP files found in Excel for each of these functions.

NOTE: All of the information contained in this file has been collected from the various HELP files found in Excel for each of these functions. NOTE: All of the information contained in this file has been collected from the various HELP files found in Excel for each of these functions. PV Returns the present value of an investment. The present

More information

In Section 5.3, we ll modify the worksheet shown above. This will allow us to use Excel to calculate the different amounts in the annuity formula,

In Section 5.3, we ll modify the worksheet shown above. This will allow us to use Excel to calculate the different amounts in the annuity formula, Excel has several built in functions for working with compound interest and annuities. To use these functions, we ll start with a standard Excel worksheet. This worksheet contains the variables used throughout

More information

HO-23: METHODS OF INVESTMENT APPRAISAL

HO-23: METHODS OF INVESTMENT APPRAISAL HO-23: METHODS OF INVESTMENT APPRAISAL After completing this exercise you will be able to: Calculate and compare the different returns on an investment using the ROI, NPV, IRR functions. Investments: Discounting,

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

Module 5: Interest concepts of future and present value

Module 5: Interest concepts of future and present value Page 1 of 23 Module 5: Interest concepts of future and present value Overview In this module, you learn about the fundamental concepts of interest and present and future values, as well as ordinary annuities

More information

MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11

MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11 MS Excel Handout: Level 2 elearning Department 2016 Page 1 of 11 Contents Excel Environment:... 3 To create a new blank workbook:...3 To insert text:...4 Cell addresses:...4 To save the workbook:... 5

More information

CS-150L Computing for Business Students Future Value of a Retirement Annuity

CS-150L Computing for Business Students Future Value of a Retirement Annuity CS-150L Computing for Business Students Future Value of a Retirement Annuity Instructor: Matthew Barrick e-mail: barrick@cs.unm.edu www.cs.unm.edu/~barrick Office: Farris Engineering Center (FEC) room

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

6: Financial Calculations

6: Financial Calculations : Financial Calculations The Time Value of Money Growth of Money I Growth of Money II The FV Function Amortisation of a Loan Annuity Calculation Comparing Investments Worked examples Other Financial Functions

More information

How To Value A Bond In Excel

How To Value A Bond In Excel Financial Modeling Templates http://spreadsheetml.com/finance/bondvaluationyieldtomaturity.shtml Copyright (c) 2009-2014, ConnectCode All Rights Reserved. ConnectCode accepts no responsibility for any

More information

DISCOUNTED CASH FLOW VALUATION and MULTIPLE CASH FLOWS

DISCOUNTED CASH FLOW VALUATION and MULTIPLE CASH FLOWS Chapter 5 DISCOUNTED CASH FLOW VALUATION and MULTIPLE CASH FLOWS The basic PV and FV techniques can be extended to handle any number of cash flows. PV with multiple cash flows: Suppose you need $500 one

More information

CARMEN VENTER COPYRIGHT www.futurefinance.co.za 0828807192 1

CARMEN VENTER COPYRIGHT www.futurefinance.co.za 0828807192 1 Carmen Venter CFP WORKSHOPS FINANCIAL CALCULATIONS presented by Geoff Brittain Q 5.3.1 Calculate the capital required at retirement to meet Makhensa s retirement goals. (5) 5.3.2 Calculate the capital

More information

3. Time value of money. We will review some tools for discounting cash flows.

3. Time value of money. We will review some tools for discounting cash flows. 1 3. Time value of money We will review some tools for discounting cash flows. Simple interest 2 With simple interest, the amount earned each period is always the same: i = rp o where i = interest earned

More information

The Time Value of Money C H A P T E R N I N E

The Time Value of Money C H A P T E R N I N E The Time Value of Money C H A P T E R N I N E Figure 9-1 Relationship of present value and future value PPT 9-1 $1,000 present value $ 10% interest $1,464.10 future value 0 1 2 3 4 Number of periods Figure

More information

A User Manual for Benefit Cost Analysis Using Microsoft Excel

A User Manual for Benefit Cost Analysis Using Microsoft Excel A User Manual for Benefit Cost Analysis Using Microsoft Excel Canesio Predo National Abaca Research Center Leyte State University Baybay, Leyte, Philippines David James Ecoservices Pty Ltd NSW, Australia

More information

Module 5: Interest concepts of future and present value

Module 5: Interest concepts of future and present value file:///f /Courses/2010-11/CGA/FA2/06course/m05intro.htm Module 5: Interest concepts of future and present value Overview In this module, you learn about the fundamental concepts of interest and present

More information

Chapter The Time Value of Money

Chapter The Time Value of Money Chapter The Time Value of Money PPT 9-2 Chapter 9 - Outline Time Value of Money Future Value and Present Value Annuities Time-Value-of-Money Formulas Adjusting for Non-Annual Compounding Compound Interest

More information

How To Analyze Data In Excel 2003 With A Powerpoint 3.5

How To Analyze Data In Excel 2003 With A Powerpoint 3.5 Microsoft Excel 2003 Data Analysis Larry F. Vint, Ph.D lvint@niu.edu 815-753-8053 Technical Advisory Group Customer Support Services Northern Illinois University 120 Swen Parson Hall DeKalb, IL 60115 Copyright

More information

Problem Set: Annuities and Perpetuities (Solutions Below)

Problem Set: Annuities and Perpetuities (Solutions Below) Problem Set: Annuities and Perpetuities (Solutions Below) 1. If you plan to save $300 annually for 10 years and the discount rate is 15%, what is the future value? 2. If you want to buy a boat in 6 years

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

A Look Inside the Cash Flow Opportunity (CFO) Calculator: Calculations and Methodology

A Look Inside the Cash Flow Opportunity (CFO) Calculator: Calculations and Methodology A Look Inside the Cash Flow Opportunity (CFO) Calculator: Calculations and Methodology Background The Cash Flow Opportunity (CFO) Calculator was developed to address the we don t have the money objection

More information

TIME VALUE OF MONEY PROBLEM #7: MORTGAGE AMORTIZATION

TIME VALUE OF MONEY PROBLEM #7: MORTGAGE AMORTIZATION TIME VALUE OF MONEY PROBLEM #7: MORTGAGE AMORTIZATION Professor Peter Harris Mathematics by Sharon Petrushka Introduction This problem will focus on calculating mortgage payments. Knowledge of Time Value

More information

Chapter 6 Contents. Principles Used in Chapter 6 Principle 1: Money Has a Time Value.

Chapter 6 Contents. Principles Used in Chapter 6 Principle 1: Money Has a Time Value. Chapter 6 The Time Value of Money: Annuities and Other Topics Chapter 6 Contents Learning Objectives 1. Distinguish between an ordinary annuity and an annuity due, and calculate present and future values

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

Ordinary Annuities Chapter 10

Ordinary Annuities Chapter 10 Ordinary Annuities Chapter 10 Learning Objectives After completing this chapter, you will be able to: > Define and distinguish between ordinary simple annuities and ordinary general annuities. > Calculate

More information

Finding the Payment $20,000 = C[1 1 / 1.0066667 48 ] /.0066667 C = $488.26

Finding the Payment $20,000 = C[1 1 / 1.0066667 48 ] /.0066667 C = $488.26 Quick Quiz: Part 2 You know the payment amount for a loan and you want to know how much was borrowed. Do you compute a present value or a future value? You want to receive $5,000 per month in retirement.

More information

Microsoft Excel 2007 Critical Data Analysis Using Functions

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

More information

Key Concepts and Skills. Multiple Cash Flows Future Value Example 6.1. Chapter Outline. Multiple Cash Flows Example 2 Continued

Key Concepts and Skills. Multiple Cash Flows Future Value Example 6.1. Chapter Outline. Multiple Cash Flows Example 2 Continued 6 Calculators Discounted Cash Flow Valuation Key Concepts and Skills Be able to compute the future value of multiple cash flows Be able to compute the present value of multiple cash flows Be able to compute

More information

LO.a: Interpret interest rates as required rates of return, discount rates, or opportunity costs.

LO.a: Interpret interest rates as required rates of return, discount rates, or opportunity costs. LO.a: Interpret interest rates as required rates of return, discount rates, or opportunity costs. 1. The minimum rate of return that an investor must receive in order to invest in a project is most likely

More information

Excel 2010 Formulas & Functions

Excel 2010 Formulas & Functions Excel is the world s premier spreadsheet software. You can use Excel to analyze numbers, keep track of data, and graphically represent your information. With Excel 2010, you can manage more data than ever,

More information

Corporate Finance Fundamentals [FN1]

Corporate Finance Fundamentals [FN1] Page 1 of 32 Foundation review Introduction Throughout FN1, you encounter important techniques and concepts that you learned in previous courses in the CGA program of professional studies. The purpose

More information

Chapter 6. Time Value of Money Concepts. Simple Interest 6-1. Interest amount = P i n. Assume you invest $1,000 at 6% simple interest for 3 years.

Chapter 6. Time Value of Money Concepts. Simple Interest 6-1. Interest amount = P i n. Assume you invest $1,000 at 6% simple interest for 3 years. 6-1 Chapter 6 Time Value of Money Concepts 6-2 Time Value of Money Interest is the rent paid for the use of money over time. That s right! A dollar today is more valuable than a dollar to be received in

More information

Excel Project 4. 1. From the Start menu select New Office Document. If necessary, click the General tab and then double-click Blank workbook.

Excel Project 4. 1. From the Start menu select New Office Document. If necessary, click the General tab and then double-click Blank workbook. Excel Project 4 Two of the more powerful aspects of Excel are its wide array of functions and its capability to organize answers to what-if questions. In earlier projects you were introduced to several

More information

Chapter 4. The Time Value of Money

Chapter 4. The Time Value of Money Chapter 4 The Time Value of Money 1 Learning Outcomes Chapter 4 Identify various types of cash flow patterns Compute the future value and the present value of different cash flow streams Compute the return

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

Basic financial arithmetic

Basic financial arithmetic 2 Basic financial arithmetic Simple interest Compound interest Nominal and effective rates Continuous discounting Conversions and comparisons Exercise Summary File: MFME2_02.xls 13 This chapter deals

More information

CHAPTER 9 Time Value Analysis

CHAPTER 9 Time Value Analysis Copyright 2008 by the Foundation of the American College of Healthcare Executives 6/11/07 Version 9-1 CHAPTER 9 Time Value Analysis Future and present values Lump sums Annuities Uneven cash flow streams

More information

1. If you wish to accumulate $140,000 in 13 years, how much must you deposit today in an account that pays an annual interest rate of 14%?

1. If you wish to accumulate $140,000 in 13 years, how much must you deposit today in an account that pays an annual interest rate of 14%? Chapter 2 - Sample Problems 1. If you wish to accumulate $140,000 in 13 years, how much must you deposit today in an account that pays an annual interest rate of 14%? 2. What will $247,000 grow to be in

More information

Time Value of Money Practice Questions Irfanullah.co

Time Value of Money Practice Questions Irfanullah.co 1. You are trying to estimate the required rate of return for a particular investment. Which of the following premiums are you least likely to consider? A. Inflation premium B. Maturity premium C. Nominal

More information

UNDERSTANDING HEALTHCARE FINANCIAL MANAGEMENT, 5ed. Time Value Analysis

UNDERSTANDING HEALTHCARE FINANCIAL MANAGEMENT, 5ed. Time Value Analysis This is a sample of the instructor resources for Understanding Healthcare Financial Management, Fifth Edition, by Louis Gapenski. This sample contains the chapter models, end-of-chapter problems, and end-of-chapter

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

Problems on Time value of money January 22, 2015

Problems on Time value of money January 22, 2015 Investment Planning Problems on Time value of money January 22, 2015 Vandana Srivastava SENSEX closing value on Tuesday: closing value on Wednesday: opening value on Thursday: Top news of any financial

More information

2. How would (a) a decrease in the interest rate or (b) an increase in the holding period of a deposit affect its future value? Why?

2. How would (a) a decrease in the interest rate or (b) an increase in the holding period of a deposit affect its future value? Why? CHAPTER 3 CONCEPT REVIEW QUESTIONS 1. Will a deposit made into an account paying compound interest (assuming compounding occurs once per year) yield a higher future value after one period than an equal-sized

More information

Appendix C- 1. Time Value of Money. Appendix C- 2. Financial Accounting, Fifth Edition

Appendix C- 1. Time Value of Money. Appendix C- 2. Financial Accounting, Fifth Edition C- 1 Time Value of Money C- 2 Financial Accounting, Fifth Edition Study Objectives 1. Distinguish between simple and compound interest. 2. Solve for future value of a single amount. 3. Solve for future

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

Time Value of Money 1

Time Value of Money 1 Time Value of Money 1 This topic introduces you to the analysis of trade-offs over time. Financial decisions involve costs and benefits that are spread over time. Financial decision makers in households

More information

USING THE SHARP EL 738 FINANCIAL CALCULATOR

USING THE SHARP EL 738 FINANCIAL CALCULATOR USING THE SHARP EL 738 FINANCIAL CALCULATOR Basic financial examples with financial calculator steps Prepared by Colin C Smith 2010 Some important things to consider 1. These notes cover basic financial

More information

MAT116 Project 2 Chapters 8 & 9

MAT116 Project 2 Chapters 8 & 9 MAT116 Project 2 Chapters 8 & 9 1 8-1: The Project In Project 1 we made a loan workout decision based only on data from three banks that had merged into one. We did not consider issues like: What was the

More information

HOW TO CALCULATE PRESENT VALUES

HOW TO CALCULATE PRESENT VALUES Chapter 2 HOW TO CALCULATE PRESENT VALUES Brealey, Myers, and Allen Principles of Corporate Finance 11th Edition McGraw-Hill/Irwin Copyright 2014 by The McGraw-Hill Companies, Inc. All rights reserved.

More information

TIME VALUE OF MONEY. Return of vs. Return on Investment: We EXPECT to get more than we invest!

TIME VALUE OF MONEY. Return of vs. Return on Investment: We EXPECT to get more than we invest! TIME VALUE OF MONEY Return of vs. Return on Investment: We EXPECT to get more than we invest! Invest $1,000 it becomes $1,050 $1,000 return of $50 return on Factors to consider when assessing Return on

More information

Part 610 Natural Resource Economics Handbook

Part 610 Natural Resource Economics Handbook Part 610 Natural Resource Economics Handbook 610.20 Introduction Subpart C Discounted Cash Flow Analysis A. Benefits and costs of conservation practices do not necessarily occur at the same time. Certain

More information

APPENDIX. Interest Concepts of Future and Present Value. Concept of Interest TIME VALUE OF MONEY BASIC INTEREST CONCEPTS

APPENDIX. Interest Concepts of Future and Present Value. Concept of Interest TIME VALUE OF MONEY BASIC INTEREST CONCEPTS CHAPTER 8 Current Monetary Balances 395 APPENDIX Interest Concepts of Future and Present Value TIME VALUE OF MONEY In general business terms, interest is defined as the cost of using money over time. Economists

More information

Chapter 8. 48 Financial Planning Handbook PDP

Chapter 8. 48 Financial Planning Handbook PDP Chapter 8 48 Financial Planning Handbook PDP The Financial Planner's Toolkit As a financial planner, you will be doing a lot of mathematical calculations for your clients. Doing these calculations for

More information

How To Calculate A Pension

How To Calculate A Pension Interests on Transactions Chapter 10 13 PV & FV of Annuities PV & FV of Annuities An annuity is a series of equal regular payment amounts made for a fixed number of periods 2 Problem An engineer deposits

More information

Chapter 6. Learning Objectives Principles Used in This Chapter 1. Annuities 2. Perpetuities 3. Complex Cash Flow Streams

Chapter 6. Learning Objectives Principles Used in This Chapter 1. Annuities 2. Perpetuities 3. Complex Cash Flow Streams Chapter 6 Learning Objectives Principles Used in This Chapter 1. Annuities 2. Perpetuities 3. Complex Cash Flow Streams 1. Distinguish between an ordinary annuity and an annuity due, and calculate present

More information

Excel Formulas & Functions Tips & Techniques

Excel Formulas & Functions Tips & Techniques Excel Formulas & Functions Tips & Techniques Excel makes use of formulas (mathematical expressions that you create) and functions (mathematical expressions already available in Excel) to dynamically calculate

More information

FinQuiz Notes 2 0 1 5

FinQuiz Notes 2 0 1 5 Reading 5 The Time Value of Money Money has a time value because a unit of money received today is worth more than a unit of money to be received tomorrow. Interest rates can be interpreted in three ways.

More information

Foundation review. Introduction. Learning objectives

Foundation review. Introduction. Learning objectives Foundation review: Introduction Foundation review Introduction Throughout FN1, you will be expected to apply techniques and concepts that you learned in prerequisite courses. The purpose of this foundation

More information

TIME VALUE OF MONEY. Hewlett-Packard HP-12C Calculator

TIME VALUE OF MONEY. Hewlett-Packard HP-12C Calculator SECTION 1, CHAPTER 6 TIME VALUE OF MONEY CHAPTER OUTLINE Clues, Hints, and Tips Present Value Future Value Texas Instruments BA II+ Calculator Hewlett-Packard HP-12C Calculator CLUES, HINTS, AND TIPS Present

More information

Excel 2010 Sorting and Filtering

Excel 2010 Sorting and Filtering Excel 2010 Sorting and Filtering Computer Training Centre, UCC, tcentre@ucc.ie, 021-4903749/3751/3752 Table of Contents Sorting Data... 1 Sort Order... 1 Sorting by Cell Colour, Font Colour or Cell Icon...

More information

Excel Financial Functions

Excel Financial Functions Excel Financial Functions PV() Effect() Nominal() FV() PMT() Payment Amortization Table Payment Array Table NPer() Rate() NPV() IRR() MIRR() Yield() Price() Accrint() Future Value How much will your money

More information

Basic Financial Calculations

Basic Financial Calculations I Corporate Finance Models Basic Financial Calculations. Overview This chapter aims to give you some finance basics and their Excel implementation. If you have had a good introductory course in finance,

More information

Discounted Cash Flow Valuation

Discounted Cash Flow Valuation 6 Formulas Discounted Cash Flow Valuation McGraw-Hill/Irwin Copyright 2008 by The McGraw-Hill Companies, Inc. All rights reserved. Chapter Outline Future and Present Values of Multiple Cash Flows Valuing

More information

Chapter 4. The Time Value of Money

Chapter 4. The Time Value of Money Chapter 4 The Time Value of Money 4-2 Topics Covered Future Values and Compound Interest Present Values Multiple Cash Flows Perpetuities and Annuities Inflation and Time Value Effective Annual Interest

More information

Dick Schwanke Finite Math 111 Harford Community College Fall 2015

Dick Schwanke Finite Math 111 Harford Community College Fall 2015 Using Technology to Assist in Financial Calculations Calculators: TI-83 and HP-12C Software: Microsoft Excel 2007/2010 Session #4 of Finite Mathematics 1 TI-83 / 84 Graphing Calculator Section 5.5 of textbook

More information

Appendix. Time Value of Money. Financial Accounting, IFRS Edition Weygandt Kimmel Kieso. Appendix C- 1

Appendix. Time Value of Money. Financial Accounting, IFRS Edition Weygandt Kimmel Kieso. Appendix C- 1 C Time Value of Money C- 1 Financial Accounting, IFRS Edition Weygandt Kimmel Kieso C- 2 Study Objectives 1. Distinguish between simple and compound interest. 2. Solve for future value of a single amount.

More information

Mail Merge Creating Mailing Labels 3/23/2011

Mail Merge Creating Mailing Labels 3/23/2011 Creating Mailing Labels in Microsoft Word Address data in a Microsoft Excel file can be turned into mailing labels in Microsoft Word through a mail merge process. First, obtain or create an Excel spreadsheet

More information

Time-Value-of-Money and Amortization Worksheets

Time-Value-of-Money and Amortization Worksheets 2 Time-Value-of-Money and Amortization Worksheets The Time-Value-of-Money and Amortization worksheets are useful in applications where the cash flows are equal, evenly spaced, and either all inflows or

More information

Excel 2003 Tutorials - Video File Attributes

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

More information

Spreadsheet File Transfer User Guide. FR 2248 Domestic Finance Company Report of Consolidated Assets and Liabilities

Spreadsheet File Transfer User Guide. FR 2248 Domestic Finance Company Report of Consolidated Assets and Liabilities Spreadsheet File Transfer User Guide FR 2248 Domestic Finance Company Report of Consolidated Assets and Liabilities STATISTICS FUNCTION August 31, 2015 Overview The Federal Reserve System s Reporting Central

More information

QuickBooks and Neat. A guide to using Neat and QuickBooks together

QuickBooks and Neat. A guide to using Neat and QuickBooks together QuickBooks and Neat A guide to using Neat and QuickBooks together Introduction The Neat software is designed to sync with a number of popular 3 rd -party programs designed to keep track of expenses. One

More information

How To Use Excel 4.4.2.2 On A Computer Or A Computer With A Cell Phone Or Cell Phone

How To Use Excel 4.4.2.2 On A Computer Or A Computer With A Cell Phone Or Cell Phone M04_GASK8219_01_SE_C04E.qxd 6/30/10 7:53 AM Page 241 chapter 4 Excel 2010 Use Financial and Lookup Functions, Define Names, and Validate Data OUTCOMES At the end of this chapter you will be able to: PROJECT

More information

TIME VALUE OF MONEY PROBLEM #4: PRESENT VALUE OF AN ANNUITY

TIME VALUE OF MONEY PROBLEM #4: PRESENT VALUE OF AN ANNUITY TIME VALUE OF MONEY PROBLEM #4: PRESENT VALUE OF AN ANNUITY Professor Peter Harris Mathematics by Dr. Sharon Petrushka Introduction In this assignment we will discuss how to calculate the Present Value

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

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

Present Value and Annuities. Chapter 3 Cont d

Present Value and Annuities. Chapter 3 Cont d Present Value and Annuities Chapter 3 Cont d Present Value Helps us answer the question: What s the value in today s dollars of a sum of money to be received in the future? It lets us strip away the effects

More information

About Entering Donations in QuickBooks

About Entering Donations in QuickBooks About Entering Donations in QuickBooks You can spend a lot of time with the mouse and keyboard if you use the Enter Sales Receipts window to record donations in your QuickBooks file. To refresh your memory,

More information

Credit and borrowing. In this chapter. syllabusreference. Financial mathematics 4 Credit and borrowing

Credit and borrowing. In this chapter. syllabusreference. Financial mathematics 4 Credit and borrowing Credit and borrowing syllabusreference Financial mathematics 4 Credit and borrowing In this chapter A B C D E Flat rate interest Home loans The cost of a loan Credit cards Loan repayments reyou READY?

More information