Lesson 7 Objectives Use the IF function. Use the PMT and FV functions.

Slides:



Advertisements
Similar presentations
FIRST COURSE Excel Tutorial 3 Working with Formulas and Functions.
Advertisements

Excel Tutorial 3 Working with Formulas and Functions
Financial Functions. Overview  Power of Excel = Calculations –Loan Calculations –Expense Calculations –Consolidate Values –Search for Values.
Office 2003 Advanced Concepts and Techniques M i c r o s o f t Excel Project 4 Financial Functions, Data Tables, Amortization Schedules, and Hyperlinks.
© Paradigm Publishing, Inc Excel 2013 Level 1 Unit 2Enhancing the Display of Worksheets Chapter 7 Creating Charts and Inserting Formulas.
Lesson 4 Study Guide Review Microsoft Office 2003.
Microsoft Office Excel 2010 ® ® Tutorial 9: Working with Financial Tools and Functions.
COMPREHENSIVE Excel Tutorial 9 Developing a Financial Analysis.
XP New Perspectives on Microsoft Office Excel 2003, Second Edition- Tutorial 2 1 Microsoft Office Excel 2003 Tutorial 2 – Working With Formulas and Functions.
REVIEW Midterm Review ICS 101 Fall Inserting a Function.
1 Committed to Shaping the Next Generation of IT Experts. Chapter 4: Spreadsheets in Decision Making: What If? Robert Grauer and Maryann Barber Exploring.
Exploring Office Grauer and Barber 1 Committed to Shaping the Next Generation of IT Experts. Chapter 4: Spreadsheets in Decision Making: What If?
Excel Functions. Prof. Leighton2 A Function Performs a predefined operation Performs a predefined operation A function A function Accepts one or more.
1 Computing for Todays Lecture 8 Yumei Huo Spring 2006.
Excel Functions By Hani Almohair Microsoft Office 2003.
1 Excel Lesson 5 Using Functions Microsoft Office 2010 Introductory Pasewark & Pasewark.
® Microsoft Office 2010 Excel Tutorial 3: Working with Formulas and Functions.
McGraw-Hill/Irwin The Interactive Computing Series © 2002 The McGraw-Hill Companies, Inc. All rights reserved. Microsoft Excel 2002 Exploring Formulas.
COMPREHENSIVE Excel Working with Functions Adapted by Miguel Vélez Rubio From: Course Technology – Cengage Learning oc.course.com/np/office2007 Excel Tutorial.
Spreadsheets Objective 6.02
XP Copyright 2003 Peter McDevitt 1 Microsoft Excel 2002 Lecture 2 – Working With Formulas and Functions.
CTS130 Spreadsheet Lesson 7 Using Logical and Financial Functions.
Excel 2007 ® Business and Personal Finances How can Excel 2007 help you plan a project and chart its progress?
Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 2 BACKNEXTEND 2-1 LINKS TO OBJECTIVES Naming Ranges Functions COUNT, COUNTA, COUNTIF, COUNTIFS.
Lesson 4 Cell Reference Formulas. Working with Cell References continued… Relative Cell Reference A relative cell reference means that the cell value.
Excel – Lesson 1 Pasewark & PasewarkMicrosoft Office 2007: Introductory 1 Entering a Formula (continued) Formulas can include more than one operator. The.
Loans and Credit Cards LSP 120 Week 9 Joanna Deszcz.
Chapter 13 Creating Formulas for Financial Applications Microsoft Office Excel 2003.
Microsoft Excel Diane M. Coyle Spring 2009 CS 105.
XP Excel Tutorial 3 Working with Formulas and Functions.
XP Abdul Hameed 1 Microsoft Office Excel 2013 Tutorial 2 – Working With Formulas and Functions.
EXCEL INTERMEDIATE 1. WORKSHEETS Worksheet Tabs –Rename by double clicking –Can be moved by click and drag –Change colour by right click and choose Tab.
 Discuss key points from Tutorials 1-4 o Cell references o Formulas o Functions o Formatting o Conditional formatting o Charts.
With Microsoft Excel 2007 Comprehensive 1e© 2008 Pearson Prentice Hall1 Chapter 5: PowerPoint Presentation GO! with Microsoft Excel ® 2007 Comprehensive.
A lesson approach © 2011 The McGraw-Hill Companies, Inc. All rights reserved. a lesson approach Microsoft® Excel 2010 © 2011 The McGraw-Hill Companies,
Microsoft Office 2013: In Practice Chapter 2 Working with Formulas and Functions Copyright © 2014 by The McGraw-Hill Companies, Inc. All rights reserved.McGraw-Hill/Irwin.
Lesson 7 Using Logical and Financial Functions
Lesson 5: Working with Formulas and Functions Logical and 3D Formulas.
Chapter 4 Financial Functions, Data Tables, and Amortization Schedules
Microsoft® Excel Key and format dates and times. 1 Use Date & Time functions. 2 Use date and time arithmetic. 3 Use the IF function. 4 Create.
XP 1 Microsoft Office Excel 2003 Working With Formulas and Functions.
1 Excel Lesson 3 Using Functions Microsoft Office 2010 Introductory Pasewark & Pasewark.
Microsoft Office 2013 ®® Calculating Data with Formulas and Functions.
PMT and What if analysis. PMT  The Microsoft Excel PMT function returns the payment amount for a loan based on an interest rate and a constant payment.
Microsoft Excel Prepared by the Academic Faculty Members of IT.
PMT and What if analysis. PMT  The Microsoft Excel PMT function returns the payment amount for a loan based on an interest rate and a constant payment.
Chapter 5 The time value of money.
Time Value of Money Basics and Building Blocks
LSP 120: Quantitative Reasoning and Technological Literacy
Tutorial 3 Working with Formulas and Functions
Excel Tutorial 3 Working with Formulas and Functions
Microsoft Excel.
Excel Part 3 Working with Formulas and Functions
LSP 120: Quantitative Reasoning and Technological Literacy
Excel Tutorial 9 Developing a Financial Analysis
Financial Functions This lecture will cover the use of some basic functions provided by EXCEL. We will be explore how these functions work and how they.
Analyzing Data Using Formulas
PMT and What if analysis
Excel Formatting Rules
Financial Functions Functions that can be used to calculate values based on compounded interest Taking a loan Investing in a savings account Financial.
Intro to Financial Management
Working with Formulas and Functions
Chapter 2: Working with Formulas and Functions
Microsoft Excel – Part II
Excel Functions By Hani Almohair
Spreadsheets 2 Explain advanced spreadsheet concepts and functions
Spreadsheets Objective 6.02
Excel Tutorial 3 Working with Formulas and Functions
Spreadsheets Objective 6.02
Working with Formulas and Functions
Presentation transcript:

Lesson 7 Objectives Use the IF function. Use the PMT and FV functions.

The syntax for the IF function is: Using the IF Function The result of an IF formula can show a value or a label, or it can compute a result. The IF function can use relational or comparison operators and the usual arithmetic operators. The syntax for the IF function is: =IF(logical_test, value_if_true, value_if_false)

Relational Operators

=IF(C5>50,C5*2, "None") IF Function Arguments Logical_test is the condition. It’s a statement or expression that is either true or false. In the example, the expression C5>50 is either true or false, depending on the value in cell C5.

=IF(C5>50,C5*2, "None") IF Function Arguments Value_if_true is what the formula shows if the logical_test is true. In the example, if C5 is greater than 50, the value in cell C5 is multiplied by 2. The value_if_true can be a formula, a value, text, or a cell reference.

=IF(C5>50,C5*2, "None") IF Function Arguments Value_if_false is what the formula shows if the logical_test is not true. The value_if_false can be a formula, a value, text, or a cell reference. In the example, if the value in cell C5 is 50 or less, the result is the word None.

IF Function Arguments

Keying an IF Function

Working with Cell Styles A cell style is a set of formatting specifications for labels or values. A cell style can contain font, number format, border, alignment, fill, and cell protection settings. The default cell style is Normal. Click the Cell Styles button to see the Cell Styles gallery.

The Cell Styles Gallery

Creating and Editing a Cell Style You can create your own cell style by choosing New Cell Style in the Cell Styles gallery. Name the style and click Format. Make your choices. Your styles appear at the top of gallery. If you edit a style, any cells using it are automatically reformatted.

Using Financial Functions Financial functions analyze money transactions. Many financial functions use the concept of an annuity. An annuity is a series of equal payments made at regular intervals for a specified period of time.

Financial Function Arguments Rate is the interest for the period. If you make monthly payments, you must divide the rate by 12 to find the monthly interest rate. Nper is the total number of periods during which a payment is made, the total number of payments. A 5-year loan with monthly payments has an Nper of 60 (12 months a year * 5 years).

Financial Function Arguments PV is present value or the amount of the loan. It is the current cash value of the transaction. FV is future value or the cash balance at the end of the time period. For an investment, FV is how much you will have at the end of your savings or investment time. For a loan, the FV is 0 because you must pay back every penny. Type specifies whether payments are made at the beginning or the end of the period.

Using PMT

Keying a PMT Function

Summary The IF function enables you to create formulas that test whether a condition is true. If it is true, you specify what should be shown or done, and you also set what happens if the condition is false. The IF function can show text in its result, it can calculate a value, or it can show a cell reference. Logical functions use relational or comparison operators.

Summary A style is a set of formatting attributes for labels and values. Cell styles appear in a gallery with Live Preview. They are coordinated with the document theme. You can remove all formatting from a cell and return to the default Normal style. You can create your own style and save it with the worksheet.

Summary Financial functions include PMT and FV and other common business calculations such as depreciation. The PMT function calculates a regular payment for a loan, using an interest rate. The FV function calculates how much an investment will be worth in the future at a given interest rate.