Hoi Le. COUNTIF Countif(, ) Return number of elements that meet the criteria Always put criteria in quotation marks Example 1: count number of employees.

Slides:



Advertisements
Similar presentations
Intro to Scala Lists. Scala Lists are always immutable. This means that a list in Scala, once created, will remain the same.
Advertisements

Microsoft Office Illustrated Using Formulas Analyzing Data.
Microsoft Office Grade 10 A / B Cahaya Bangsa Classical School (C) 2010 Digital Media Production Facility 14 Microsoft Excel – 05.
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.
Spreadsheet Software (Advanced Topics) Microsoft Excel.
Relative, Absolute, & Mixed References. Relative Reference (Address) ABCD  In C3, =A1+B2 means Display sum of the content of cell which is.
# 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.
情報基礎 B Lecture 5 Takeshi Tokuyama Tohoku University Graduate School of Information Sciences System Information Sciences Design and Analysis of Information.
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 
259 Lecture 4 Spring 2010 Logical Functions and Conditional Formatting in Excel.
Tutorial 8: Working with Advanced Functions
SUMIF() Lesson: BASIC. =SUMIF() When Do You Use It: – To add numbers based on a single criterion/condition Example: If you have a column of data with.
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.
Chapter 6 Advanced Functions Copyright 2005 Radian Publishing Co.
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.
EXCEL FUNCTIONS MIS THE BASICS  LEFT(), RIGHT(), MID()  Keep X characters from string  CONCATENATE()  Join two strings together  TRIM()  Drop.
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.
AGB 260: Agribusiness Information Technology Advanced Functions and Logic.
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.
1. Common Functions 2.
It’s not that I’m so smart, it’s just that I stay with problems longer. - Albert Einstein.
MS Excel Management Information Systems 1. Contents 2  Functions  IF Function and nested IF  Sorting Data.  Filtering Data.  Data Form.  Data Validation.
Lesson No: 11 Working with Formula, Function, Chart & Excel Tools CHBT-01 Basic Micro process & Computer Operation.
Conditional and Cross-Sheet Formulas William Klingelsmith.
Prescriptive Analytics Appendix A EXCEL TOOLS FOR THE MANAGEMENT SCIENTIST Business Analytics with Management Science Models and Methods Arben Asllani.
Lesson 5: Working with Formulas and Functions Logical and 3D Formulas.
1 Improvement over the old : Dcount, DSum and DAverage Functions)
Structured Query Language
More Spreadsheets Range Formulas & Empty Cells Logical Functions Lookup Functions.
CIS300 Test Review REACH - CRC © 2010 REACH All Rights Reserved.Fall 2010.
DECISIONS AND FUNCTIONS Module 4.2. DECISIONS AND FUNCTIONS Module 4.2.
Intermediate Excel 2013 Gareth Johns IT Skills Development Advisor.
Homework Discussion Homework 6 (Glade Manual Chapter 6) Database functions in Excel.
XP Life Insurance Premium Flowchart 1 Add Life Ins = “Y” Salary * Premium Rate Yes 0 No.
CIS 100 Test #2 Review 1. EXCEL Functions on Test  SUM, COUNT, COUNTA, MAX, MIN, MEDIAN, MODE, AVERAGE, ROUND, and IF  Possibly Others 
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.
EXCEL. PARTICIPATION PROJECT STEPS a, 4b
AGB 260: Agribusiness Information Technology Advanced Functions and Logic.
MS-EXCEL PART 3. Use data validation in Excel to make sure that users enter certain values into a cell. Data Validation Example In this example, we restrict.
CIS300 Test Review REACH-CRC © 2012 REACH-CRC. All Rights Reserved.FALL 2012.
AGB 260: Agribusiness Data Literacy
Logical Functions and Conditional Formatting in Excel
Using Advanced Formulas
Contents Introduction Text functions Logical functions
Relative, Absolute, & Mixed References
Using Advanced Functions and Conditional Formatting
Exam 2- McIntosh REACH - CRC
TRACKER Contents Intro Excel 101 Math Operations Formulas 101.
Excel IF Function.
Excel Functions.
2007 MICROSOFT EXCEL INTERMEDIATE
REACH CRC Professor Reinhardt
CIS300 Test Review REACH - CRC Fall 2010
Analyzing Data Using Formulas
Managing Multiple Worksheets and Workbooks
Microsoft Excel – Part I
Excel: Formulas & Functions III Participation Project
Spreadsheets 2 Explain advanced spreadsheet concepts and functions
REACH CRC Professor Manni
Spreadsheets Objective 6.02
REACH Computer Resource Center
Spreadsheets Objective 6.02
MS Excel – Analyzing Data
Presentation transcript:

Hoi Le

COUNTIF Countif(, ) Return number of elements that meet the criteria Always put criteria in quotation marks Example 1: count number of employees in IT department. Hoi Le2

COUNTIF (Cont’d) Example 2: Return number of employees that have salary greater than Reagan’s salary “&” operator: concatenate two strings Hoi Le3

Note: General form of a function: function_name( ) Parameters are separated by “,” mark E.g.: sum(B2:B10), count(B2:B10), countif(B2:B10,”IT”) Hoi Le4

SUMIF Similar to the Countif function Return the sum of values that satisfy the condition Example: return sum of salaries greater than Hoi Le5

SUMIF (Cont’d) Second usage of Sumif: First range of cells: to check the condition Followed by the criteria Second range of cells: to sum up Example: return sum of salaries of employees in IT department. Hoi Le6

Note: Comparison operators: >, =,, = Hoi Le7

IF Syntax: If(logical_test, value_if_true, value_if_false) Example: Grade>=60: passed Grade<60: failed Hoi Le8

Nested If Hoi Le9

Nested If (Cont’d) To solve above problem: use nested If function Nested If: replace the third parameter value_if_false with a new If statement Hoi Le10

Nested If (Cont’d) Hoi Le11

Lookup Another way to solve that problem: use lookup function First, you need to create a look up table. Must be in ascending order 0<=Grade <50: F 50<=Grade <65: D 65<=Grade <80: C … Hoi Le12

Lookup (Cont’d) Hoi Le13

Lookup (Cont’d) Use absolute address for lookup table to make it fixed when you copy the formula G2:H6: relative address $G$2:$H$6: absolute address Hoi Le14