Excel: Counting & Conditional Functions

Slides:



Advertisements
Similar presentations
Intermediate Formulas & Functions Instructor: Rachel Baltus.
Advertisements

CS&E 1111 Exfunctions Using Functions in Excel Objectives: Using Excel functions l SUM, MIN, MAX, AVERAGE, COUNT, COUNTA l ROUND l COUNTIF, SUMIF, AVERAGEIF.
Jump to first page Excel Functions By Dr. Farrokh Alemi Dr. Kashif Haqqi.
G042 Task 4  Understand how to use a range of different functions in excel.  Used a range of functions within your excel spreadsheet.
EXCEL.
© Paradigm Publishing, Inc Excel 2013 Level 2 Unit 1Advanced Formatting, Formulas, and Data Management Chapter 2Advanced Functions and Formulas.
REACH CRC © 2011 REACH CRC. All Rights Reserved.Fall 2011.
REACH-CRC © 2013 REACH-CRC. All Rights Reserved.Spring 2013.
Exploring Excel 1. Introduction to Microsoft Excel: What is a Spreadsheet? What else can Excel do? Excel is a spreadsheet program.
MONTEGO BAY HIGH SCHOOL INFORMATION TECHNOLOGY THE EXCEL IF FUNCTION.
# 1# 1 CS 105 Functions, IF Functions What is a function? What is an IF function? A PMT function? What is a condition? What is nesting? CS 105 Spring.
Computer Science & Engineering 2111 CONDITIONAL STATISTICAL FUNCTIONS 1 CSE 2111 Lecture Conditional Statistical Functions.
情報基礎 B Lecture 5 Takeshi Tokuyama Tohoku University Graduate School of Information Sciences System Information Sciences Design and Analysis of Information.
DID YOU KNOW: T RAFFIC DELAY INFORMATION IS CALCULATED USING B LUETOOTH DEVICE INFORMATION.
CS&E 1111 ExIFs IFs and Nested IFs in Excel Objectives: Using the If function in spreadsheets Nesting If functions.
Tutorial 7: Using Advanced Functions and Conditional Formatting
Lecture Excel: Counting & Conditional Functions. Counting Cells Count: Number of non-blank, non-text cells CountA: Non-blank cells CountBlank: Counts.
Conditionals Belinda Kerchmar Operators  What are the operators we discussed last time?  This time -- Conditional Operators:  IF  SUMIF 
Lecture Excel: Formulas and Functions. Formulas Specifies calculations to be performed Begins with an equal sign (=) Can refer to: –cells by reference.
Tutorial 8: Working with Advanced Functions
Spreadsheets Objective 6.02
1CP102_module 3: spreadsheet2 More features in Excel Selection: a cell, a range, multiple ranges Name a range: to give name to a selected range or multiple.
2 Explain advanced spreadsheet concepts and functions Advanced Calculations 1 Sabbir Saleh_Lecture_17_Computer Application_BBA.
Advanced Lesson 2: Advanced Data Analysis A PivotTable is a sophisticated tool that creates a concise report summarizing large amounts of data based on.
Lesson 4 Cell Reference Formulas. Working with Cell References continued… Relative Cell Reference A relative cell reference means that the cell value.
1 Spreadsheets SELECTION. 2 Aims  Understand the principles of selection in Excel  Examine the basic IF statement format  Look into Nested IF statements.
LOGO Chapter VI Advanced Functions 1. LOGO Overview  INTRODUCTION  NESTED FUNCTIONS  LOOKUP  VLOOKUP  COUNTIF  SUMIF  IF  ROUND  THE PMT, IPMT.
COMPREHENSIVE Excel Tutorial 7 Using Advanced Functions, Conditional Formatting, and Filtering.
Excel has a number of Count Functions that will total the number of cells in a selected range. We’re going to look at: COUNT COUNTA COUNTBLANK COUNTIF.
MS Excel Management Information Systems 1. Contents 2  Functions  IF Function and nested IF  Sorting Data.  Filtering Data.  Data Form.  Data Validation.
Microsoft® Excel Use Insert Function. 1 Key and point to enter functions. 2 Navigate with and create named ranges. 3 Use range names in functions.
Python – Making Decisions Lecture 02. Control Structures A program that only has one flow is useful but limited. We can use if statements to make these.
Revision Function in Spreadsheet. AVERAGE Returns the average (arithmetic mean) of the arguments. Syntax AVERAGE(number1,number2,...) Number1, number2,...
Chapter 11 Creating Formulas that Count and Sum Microsoft Excel 2003.
Microsoft Office Excel 2013 ® ® Abdul Hameed Using Advanced Functions and Conditional Formatting.
Lesson 5: Working with Formulas and Functions Logical and 3D Formulas.
A lesson approach © 2011 The McGraw-Hill Companies, Inc. All rights reserved. a lesson approach Microsoft® Excel 2010 © 2011 The McGraw-Hill Companies,
Copyright © 2012 Pearson Education, Inc. Chapter 4: Making Decisions.
 Enhance understanding of logical functions.  Discuss using conditional logic focusing on: ◦ IF ◦ SUMIF(s) ◦ COUNTIF(s) ◦ AVERAGEIF(s)  While waiting.
More Spreadsheets Range Formulas & Empty Cells Logical Functions Lookup Functions.
Excel Review By Mr. Griffin Elmira Business Institute.
XP Life Insurance Premium Flowchart 1 Add Life Ins = “Y” Salary * Premium Rate Yes 0 No.
Hoi Le. COUNTIF Countif(, ) Return number of elements that meet the criteria Always put criteria in quotation marks Example 1: count number of employees.
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.
CTS130 Spreadsheet Lesson 6 Working with Math & Trig, Statistical, and Date & Time Functions.
Excel, Part 3 Computer Tech. Changing the angle of your text  You can change the angle, or orientation of your text in an Excel spreadsheet.  This is.
EXCEL. PARTICIPATION PROJECT STEPS a, 4b
Learning Objectives Today we will revise: Basic arithmetic formulae (+,-,*,/) Basic Functions (SUM, MIN, MAX, AVERAGE) IF Functions (IF, SUMIF, COUNTIF,
Lesson 3: Using Formulas
Computer Science & Engineering 2111
Elena Lazarevska, City of Boulder
Using Advanced Functions and Conditional Formatting
Computer Information Technology Section 6-17
Excel IF Function.
Spreadsheets Skills Lesson Part 2
2007 MICROSOFT EXCEL INTERMEDIATE
CIS300 Test Review REACH - CRC Fall 2010
Managing Multiple Worksheets and Workbooks
Microsoft Excel – Part I
Visual Basic – Decision Statements
Excel Functions.
Excel Functions.
Spreadsheets 2 Explain advanced spreadsheet concepts and functions
Lesson 4: Introduction to Functions
Spreadsheets Objective 6.02
Topic 3 Lesson 1 – Conditional Logic
REACH Computer Resource Center
Spreadsheets Objective 6.02
MS Excel – Analyzing Data
Presentation transcript:

Excel: Counting & Conditional Functions Lecture Excel: Counting & Conditional Functions

Counting Cells Count: Number of non-blank, non-text cells CountA: Non-blank cells CountBlank: Counts blank cells CountIF: Based on criteria

Count Examples

Conditional Function - IF Used to make a decision in a spreadsheet, to display one value or another If “this is true”, then “do this”, else “do that” Like BASIC programming: IF, THEN, ELSE Syntax: =IF(test, true, false)

IF in Action =IF(B2<B1,0,500) =IF(B2<B1,"You're fired.","Great job.")

More IF… =IF(C2>B2,$B$8,$B$7) =IF(C2>B2,10%,5%) Always try and use cell addresses on formulas, rather than raw values =IF(C2>B2,10%,5%)

Syntax Syntax: A test is a comparison between cells, text, or numbers =IF(test, true, false) A test is a comparison between cells, text, or numbers True and False values can be a cell, text, a number or even a formula!

And, Or OR AND =IF(OR(test,test), true, false) =IF(AND(test,test), true, false)

AND/OR in Action =IF(AND(C2>B2,D2="FT"),$B$8,$B$7) =IF(OR(C2>B2,D2="FT"),$B$8,$B$7)

Sum and SumIF Sum: Adds up values. SumIf: Adds values only if they meet criteria

SumIF Example =SUMIF(B2:B19,"Bakery",C2:C19)

Nested IF Statement Nested if statements are nothing but using an if statement inside another if statement when you have multiple logical tests. “If it’s raining, take an umbrella, but if it’s foggy, wear a coat, but if it’s windy wear a hat, or else stay home” Be sure to have as many closing ))) parentheses as you have IF statements =IF(B2=$A$13,$B$13,IF(B2=$A$14,$B$14,IF(B2=$A$15,$B$15,”Not Working)))