EXCEL INSTRUCTOR:CHITRANGI DOSHI

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

EXCEL 2007 Cell Referencing IF Function. CELL REFERENCING Three Types: –Relative –Absolute –Mixed.
The IF function Bernard Liengme. Objectives To know how to: Construct a condition using the comparison operators =, >=, >, ; Construct a formula using.
MONTEGO BAY HIGH SCHOOL INFORMATION TECHNOLOGY THE EXCEL IF FUNCTION.
1.  The IF function is a logical function used for making decisions based on some condition(s)  Conditions have to result in Boolean values. (relational.
Calling all Data Geeks! Corey McAfee October 24, 2014 Corey McAfee October 24, 2014.
® Microsoft Office 2010 Excel Tutorial 3: Working with Formulas and Functions.
 Create a small exam that calculate the grade it self  Create a small program to do.
Tutorial 8: Working with Advanced Functions
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
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.
Last Week: Excel 101 with Prof. Bliley: Workbooks, worksheets, rows, columns Cells: Text, Value, Formulas Formulas, Ranges OK? Survive Alive? Questions?
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.
XP Excel Tutorial 3 Working with Formulas and Functions.
EECS Computer Use: Fundamentals
COMPREHENSIVE Excel Tutorial 7 Using Advanced Functions, Conditional Formatting, and Filtering.
1. Common Functions 2.
Conditional and Cross-Sheet Formulas William Klingelsmith.
情報基礎 B Lecture 8 Takeshi Tokuyama Tohoku University Graduate School of Information Sciences System Information Sciences Design and Analysis of Information.
Prescriptive Analytics Appendix A EXCEL TOOLS FOR THE MANAGEMENT SCIENTIST Business Analytics with Management Science Models and Methods Arben Asllani.
Spreadsheet Formulae Some Common Functions =IF(condition, true, false) Returns one value if a condition you specify evaluates to TRUE and another value.
Powerpoint Templates Page 1 Powerpoint Templates MS Excel Functions.
Lesson 7 Using Logical and Financial Functions
CIS300 TEST REVIEW EXAM 2- PROFS. KENDRA, GOYAL & MCINTOSH REACH - CRC © 2014 REACH All Rights Reserved.
Lesson 5: Working with Formulas and Functions Logical and 3D Formulas.
G042 - Lecture 14 Excel Functions and Formula Mr C Johnston ICT Teacher
The most important mathematical functions Lecture -8- By lec. (Eng.) Hind Basil University of technology Department of Materials Engineering.
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.
The Monty Hall Simulation
DAY 10: MICROSOFT EXCEL – 7,9 AND 12 Sravanthi Lakkimsetty Sept 21, 2015.
CIS300 Test Review REACH - CRC © 2010 REACH All Rights Reserved.Fall 2010.
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 
Hoi Le. COUNTIF Countif(, ) Return number of elements that meet the criteria Always put criteria in quotation marks Example 1: count number of employees.
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.
Day # 5 Haifa Abulaiha February 01,
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.
Logical Functions and Conditional Formatting in Excel
Exam 2- McIntosh REACH - CRC
REACH Computer Resource Center
Excel Tutorial 3 Working with Formulas and Functions
Boolean Expressions Return or display the Boolean value TRUE or FALSE
Excel Part 3 Working with Formulas and Functions
REACH CRC Professor Reinhardt
CIS300 Test Review REACH - CRC Fall 2010
If Statement Functions in Excel
If, Ands and Buts of Excel
Working with Formulas and Functions
MIS2502: Data Analytics ICA #4. ETL - Excel Basics
Microsoft Excel – Part I
MIS2502: Data Analytics ETL - Excel Basics
Excel: Formulas & Functions II Participation Project
Spreadsheets 2 Explain advanced spreadsheet concepts and functions
REACH CRC Professor Manni
Spreadsheets Objective 6.02
Excel Tutorial 3 Working with Formulas and Functions
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:

EXCEL INSTRUCTOR:CHITRANGI DOSHI

IF() FUNCTION It is the most common logical which returns one value, when a condition is met. Syntax: =IF(logical_test, value_if_true, value_if_false)

EXAMPLE : Syntax: =IF(logical_test, value_if_true, value_if_false) IF sales>$10,000 $500 $0 Value_if_true Value_if_False

EXAMPLE: In column X, write a formula to determine if the mode of transportation’s 2009 rate was more than its 1990 rate. If it was, display Increasing; otherwise, display Not Increasing.

AND() AND() : This function accepts two or more test values and displays true if all the conditions are true. Syntax: =AND(logical 1, logical 2) Example : =IF(AND(B2=0,C2=0),10,0)

OR() OR() : This function also accepts two or more conditions and returns true if any of the condition is true and returns false if all the conditions are false. Syntax: =OR(logical 1, logical 2) Example : =IF(OR(B2=0,C2=0),10,0)