Excel IF Functions The IF function is one of Excels most useful and most used functions. What it does, basically, is test to see whether a certain condition.

Slides:



Advertisements
Similar presentations
Blood Basics Unit Review.
Advertisements

T. Trimpe Forensic Entomology Unit Review T. Trimpe
The IF function Bernard Liengme. Objectives To know how to: Construct a condition using the comparison operators =, >=, >, ; Construct a formula using.
Cell Referencing Absolute Reference: A reference that does not change when copied. It is specified with a dollar sign in front of both the row and column.
FINAL WRAP-UP Phil 109 All about final grades. THE FINAL EXAM + the quiz : A : A 92-90: A : B : B 82-80: B : C 72-70: C-
PHIL 111 Spring 2011 FINAL WRAP-UP All about grades.
Formulas, Ranges, and Functions. Formulas n Formulas perform operations such as addition, multiplication, and comparison on worksheet values. n Formulas.
CIS100 Test 2 Review REACH CRC © 2011 REACH CRC. All Rights Reserved.Spring 2011.
EXCEL.
REACH CRC © 2011 REACH CRC. All Rights Reserved.Fall 2011.
REACH-CRC © 2013 REACH-CRC. All Rights Reserved.Spring 2013.
MONTEGO BAY HIGH SCHOOL INFORMATION TECHNOLOGY THE EXCEL IF FUNCTION.
Computer Science & Engineering 2111 IF and Boolean Functions 1 CSE 2111 Lecture-IF and Boolean Functions.
CS&E 1111 ExIFs IFs and Nested IFs in Excel Objectives: Using the If function in spreadsheets Nesting If functions.
Pre-defined System Functions Simple IF & VLOOKUP.
Chap 4 Formulas and Functions Exploring Spreadsheet Software.
An Amortization Schedule New Functions. An Amortization Schedule An Amortization Schedule An Amortization Schedule Payment schedule on a loan Payment.
1 Excel Lesson 3 Using Formulas and Functions Microsoft Office 2010 Fundamentals Story / Walls.
1 Excel Lesson 5 Using Functions Microsoft Office 2010 Introductory Pasewark & Pasewark.
259 Lecture 4 Spring 2010 Logical Functions and Conditional Formatting in Excel.
 Create a small exam that calculate the grade it self  Create a small program to do.
Spreadsheets Objective 6.02
2 Explain advanced spreadsheet concepts and functions Advanced Calculations 1 Sabbir Saleh_Lecture_17_Computer Application_BBA.
1 Agenda – 9/20/2013/ Monday Howard J Rattliff, Jr. – Principles of Technology - Course #
Chapter 6 Advanced Functions Copyright 2005 Radian Publishing Co.
Lesson 4 Cell Reference Formulas. Working with Cell References continued… Relative Cell Reference A relative cell reference means that the cell value.
Data Analysis Formula and Functions. Formula and functions A function is a calculation in a spreadsheet that has or can be memorized. There are many different.
REACH-CRC © 2013 REACH-CRC. All Rights Reserved.Spring 2013.
LOGO Chapter VI Advanced Functions 1. LOGO Overview  INTRODUCTION  NESTED FUNCTIONS  LOOKUP  VLOOKUP  COUNTIF  SUMIF  IF  ROUND  THE PMT, IPMT.
Chapter 11 Creating Formulas that Count and Sum Microsoft Excel 2003.
Agenda – 9/16/2013/ Monday Howard J Rattliff, Jr. – Principles of Technology - Course #
Lesson 5: Working with Formulas and Functions Logical and 3D Formulas.
CS&E 1111 ExLogic Microsoft Excel Logical Functions Objectives: Using Boolean Logic in Spreadsheets l Relational operators l Boolean operators –Functions.
# 1# 1 Error Messages, VLookup, Practical Tips What use is VLookup? How do you error check in Excel? CS 105 Spring 2010.
Unit 4, Lesson 4 Using Function Formulas. Objectives Understand function formulas. Understand function formulas. Use the Average and Sum functions. Use.
1 Excel Lesson 3 Using Functions Microsoft Office 2010 Introductory Pasewark & Pasewark.
Are used in higher-level operations, such as conditional and comparison equations to compute interest rates, due dates and payment terms, and financial.
Customization, Calculations and Charts Myra Whittemore for Blackbaud, Inc. 09/16/2011.
XP 1 ﴀ New Perspectives on Microsoft Office 2003, Premium Edition Excel Tutorial 2 Microsoft Office Excel 2003 Tutorial 2 – Working With Formulas and Functions.
CIS300 Test Review REACH - CRC © 2010 REACH All Rights Reserved.Fall 2010.
Visual Basic CDA College Limassol Campus COM123 Visual Basic Programming Semester C Lecture:Pelekanou Olga Week 4: Understand and implement Decisions.
Advanced Functions SET 153L. Logical Function An IF function can place different values in a cell based on some condition. =IF (test, value if true, value.
Microsoft Excel Prepared by the Academic Faculty Members of IT.
Chapter 2 Excel Fundamentals Logical IF (Decision) Statements Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
CIS 100 Test #2 Review 1. EXCEL Functions on Test  SUM, COUNT, COUNTA, MAX, MIN, MEDIAN, MODE, AVERAGE, ROUND, and IF  Possibly Others 
Spreadsheet Calculations Formulas & Functions Computer Applications I.
LESSON 3 Working with Functions, Formulas, and Charts.
OV Copyright © 2011 Element K Content LLC. All rights reserved. Calculating Data with Advanced Formulas  Apply Cell and Range Names  Calculate.
1 Introduction to the Excel ‘IF’ Function. 2 What is the ‘IF’ Function? The calculation is based on a condition that is either TRUE or FALSE. An Excel.
CIS 100 Test #3 Review REACH Computer Resource Center.
Logical Functions and Conditional Formatting in Excel
Using Advanced Functions and Conditional Formatting
Excel IF Function.
CIS300 Test Review REACH - CRC Fall 2010
How To Use VLOOKUP In Microsoft Excel
Unit 42 : Spreadsheet Modelling
Working with Formulas and Functions
Advanced Functions – Obj. 4.01
Excel 2010 Functions A function is a predefined formula that performs a calculation using specific values in a particular order. Functions save you time.
Spreadsheets 2 Explain advanced spreadsheet concepts and functions
REACH CRC Professor Manni
Spreadsheets Objective 6.02
Advanced Functions – Obj. 4.01
Topic 3 Lesson 1 – Conditional Logic
REACH Computer Resource Center
Spreadsheets Objective 6.02
Working with Formulas and Functions
Advanced Functions Advanced Functions are used in higher-level operations, such as conditional and comparison equations to compute interest rates,
Chapter 6 Lesson 3.
Lessons 3: Coffee Shop Inventory
Presentation transcript:

Excel IF Functions The IF function is one of Excels most useful and most used functions. What it does, basically, is test to see whether a certain condition is true or false. These articles cover creating and using the IF function in Excel spreadsheets and give examples of how this versatile can be utilized.

IF Returns one value if a condition you specify evaluates to TRUE and another value if it evaluates to FALSE. Use IF to conduct conditional tests on values and formulas. Syntax IF(logical_test,value_if_true,value_if_fal se)

Logical_test is any value or expression that can be evaluated to TRUE or FALSE. For example, A10=100 is a logical expression; if the value in cell A10 is equal to 100, the expression evaluates to TRUE. Otherwise, the expression evaluates to FALSE. This argument can use any comparison calculation operator.comparison calculation operator Value_if_true is the value that is returned if logical_test is TRUE. For example, if this argument is the text string "Within budget" and the logical_test argument evaluates to TRUE, then the IF function displays the text "Within budget". If logical_test is TRUE and value_if_true is blank, this argument returns 0 (zero). To display the word TRUE, use the logical value TRUE for this argument. Value_if_true can be another formula. Value_if_false is the value that is returned if logical_test is FALSE. For example, if this argument is the text string "Over budget" and the logical_test argument evaluates to FALSE, then the IF function displays the text "Over budget". If logical_test is FALSE and value_if_false is omitted, (that is, after value_if_true, there is no comma), then the logical value FALSE is returned. If logical_test is FALSE and value_if_false is blank (that is, after value_if_true, there is a comma followed by the closing parenthesis), then the value 0 (zero) is returned. Value_if_false can be another formula.

LOOKUP =LOOKUP(A2,{0,60,63,67,70,73,77,80,83, 87,90,93,97},{"F","D-","D","D+","C- ","C","C+","B-","B","B+","A-","A","A+"})