Lesson 5: Working with Formulas and Functions Logical and 3D Formulas.

Slides:



Advertisements
Similar presentations
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.
Advertisements

Formulas, Ranges, and Functions. Formulas n Formulas perform operations such as addition, multiplication, and comparison on worksheet values. n Formulas.
Intermediate Formulas & Functions Instructor: Rachel Baltus.
CIS100 Test 2 Review REACH CRC © 2011 REACH CRC. All Rights Reserved.Spring 2011.
REACH CRC © 2011 REACH CRC. All Rights Reserved.Fall 2011.
MONTEGO BAY HIGH SCHOOL INFORMATION TECHNOLOGY THE EXCEL IF FUNCTION.
Decision Making Using Excel
Copyright 2008 McGraw-Hill Ryerson 1 TECHNOLOGY PLUG-IN T4 DECSION MAKING USING EXCEL.
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.
Chap 4 Formulas and Functions Exploring Spreadsheet Software.
1 Excel Lesson 5 Using Functions Microsoft Office 2010 Introductory Pasewark & Pasewark.
® Microsoft Office 2010 Excel Tutorial 3: Working with Formulas and Functions.
259 Lecture 4 Spring 2010 Logical Functions and Conditional Formatting in Excel.
Excel Web App By: Ms. Fatima Shannag.
 Create a small exam that calculate the grade it self  Create a small program to do.
Excel 2007 Part (2) Dr. Susan Al Naqshbandi
Spreadsheets Objective 6.02
Intro to Excel - Session 7.11 Tutorial 7 - Session 7.1 Developing an Excel Application.
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.
Akil M. Merchant CGS 2060 – Spring 2011 For Dr. David Gaitros CGS Spring Continuing to Excel with Excel.
Lesson 4 Cell Reference Formulas. Working with Cell References continued… Relative Cell Reference A relative cell reference means that the cell value.
CIS300 TEST REVIEW EXAM 1- PROF. ZURADA & PROF. GUAN REACH - CRC © 2010 REACH All Rights Reserved.Fall 2010.
REACH-CRC © 2013 REACH-CRC. All Rights Reserved.Spring 2013.
Advanced Excel for Finance Professionals A self study material from South Asian Management Technologies Foundation.
Spreadsheet Formulae Some Common Functions =IF(condition, true, false) Returns one value if a condition you specify evaluates to TRUE and another value.
Agenda – 9/16/2013/ Monday Howard J Rattliff, Jr. – Principles of Technology - Course #
Lesson 7 Using Logical and Financial Functions
Unit 4, Lesson 4 Using Function Formulas. Objectives Understand function formulas. Understand function formulas. Use the Average and Sum functions. Use.
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.
Excel Web App By: Ms. Fatima Shannag.
Decision Making Using Excel
1 Excel Lesson 3 Using Functions Microsoft Office 2010 Introductory Pasewark & Pasewark.
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.
Intermediate Excel 2013 Gareth Johns IT Skills Development Advisor.
Microsoft Excel Prepared by the Academic Faculty Members of IT.
CIS 100 Test #2 Review 1. EXCEL Functions on Test  SUM, COUNT, COUNTA, MAX, MIN, MEDIAN, MODE, AVERAGE, ROUND, and IF  Possibly Others 
Pages Appendix B: Review of ExcelChapter 3 Market Trends & Analysis IBM 320 CAL POLY POMONA IBM320 Market Trends and Analysis Maha Ghosn.
FUNCTIONS The parts of a function In order to work correctly, a function must be written a specific way, which is called the syntax. The basic syntax for.
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.
EXCEL. PARTICIPATION PROJECT STEPS a, 4b
CIS300 Test Review REACH-CRC © 2012 REACH-CRC. All Rights Reserved.FALL 2012.
EXCEL INSTRUCTOR:CHITRANGI DOSHI
Logical Functions and Conditional Formatting in Excel
Contents Introduction Text functions Logical functions
REACH Computer Resource Center
TRACKER Contents Intro Excel 101 Math Operations Formulas 101.
Excel IF Function.
REACH CRC Professor Reinhardt
CIS300 Test Review REACH - CRC Fall 2010
If Statement Functions in Excel
Working with Formulas and Functions
Microsoft Excel – Part I
Excel: Formulas & Functions II Participation Project
Spreadsheets 2 Explain advanced spreadsheet concepts and functions
REACH CRC Professor Manni
Spreadsheets Objective 6.02
Topic 3 Lesson 1 – Conditional Logic
Functions theory © EIT, Author Gay Robertson, 2017.
REACH Computer Resource Center
Lesson 7 Objectives Use the IF function. Use the PMT and FV functions.
Spreadsheets Objective 6.02
Working with Formulas and Functions
Presentation transcript:

Lesson 5: Working with Formulas and Functions Logical and 3D Formulas

Using Logic in Formulas A logical function is one that can return a true value or a false value. They are usually used in doing comparisons and seeing if things are equal to each other or not, or which is higher or lower. The logical functions that Excel provides are: TRUE FALSE AND OR NOT IF Read more: YMRb8U4U YMRb8U4U

Comparison Operators Excel uses comparison operators in logical functions Equal to: = Not equal to: <> Greater than: > Less than: < Greater than or equal to: >= Less than or equal to: <=

IF Statements The IF function returns one value if a condition you specify evaluates to TRUE, and another value if that condition evaluates to FALSE. For example, the formula =IF(A1>10,"Over 10","10 or less") returns "Over 10" if A1 is greater than 10, and "10 or less" if A1 is less than or equal to 10. Syntax: =IF(logical_test,value_if_true,value_if_false)

IF Statement Logical_Test logical_test: 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 operator.

IF Statements Value_IF_TRUE value_if_true : The value that you want to be returned if the logical_test argument evaluates to TRUE. For example, if the value of this argument is the text string "Within budget" and the logical_test argument evaluates to TRUE, the IF function returns the text "Within budget." If logical_test evaluates to TRUE and the value_if_true argument is omitted (that is, there is only a comma following the logical_test argument), the IF function returns 0 (zero). To display the word TRUE, use the logical value TRUE for the value_if_true argument.

IF Statements Value_IF_False value_if_false: The value that you want to be returned if the logical_test argument evaluates to FALSE. For example, if the value of this argument is the text string "Over budget" and the logical_test argument evaluates to FALSE, the IF function returns the text "Over budget." If logical_test evaluates to FALSE and the value_if_false argument is omitted, (that is, there is no comma following the value_if_true argument), the IF function returns the logical value FALSE. If logical_test evaluates to FALSE and the value of the value_if_false argument is omitted (that is, in the IF function, there is no comma following the value_if_true argument), the IF function returns the value 0 (zero).

3D Formula A reference that refers to the same cell or range on multiple worksheets is called a 3D reference. Using 3D formulas allows you to calculate data throughout a workbook using multiple worksheets. All 3D formulas are based on the syntax: Sheet1:Sheet4!A2:B5. A 3D formula is a formula that refers to the same cell (or range of cells) on multiple worksheets. The 3D formula "=SUM(Sheet1:Sheet4!A2)" can be used to add up the numbers in cell "A2" on 4 different worksheets. 3D Formula3D Formula

Let’s Practice Before we practice, what questions do you have about IF Statements and 3D Formulas…….