Excel AVERAGEIF Function

Slides:



Advertisements
Similar presentations
MS EXCEL is a spreadsheet application Excel covers: Calculation Graphic tools Pivot tables Macro programming language called VBA EXCEL is a part of MS.
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.
REACH-CRC. Lookup Functions INDEX-MATCH LOOKUP Database Functions DSUM DMIN DMAX DCOUNT DAVERAGE.
© Paradigm Publishing, Inc Excel 2013 Level 2 Unit 1Advanced Formatting, Formulas, and Data Management Chapter 2Advanced Functions and Formulas.
Maths & Trig, Statistical functions. ABS Returns the absolute value of a number The absolute value of a number is the number without its sign Syntax ◦
REACH-CRC © 2013 REACH-CRC. All Rights Reserved.Spring 2013.
Introduction to Excel Formulas, Functions and References.
Computer Science & Engineering 2111 CONDITIONAL STATISTICAL FUNCTIONS 1 CSE 2111 Lecture Conditional Statistical Functions.
MIS: Chapter 14 Cumulative concepts, features and functions, plus new functions COUNTIFS, SUMIFS, AVERAGEIFS (Separate ppt on REACH.louisville.edu) All.
Tutorial 7: Using Advanced Functions and Conditional Formatting
1 1 Slide © 2001 South-Western/Thomson Learning  Anderson  Sweeney  Williams Anderson  Sweeney  Williams  Slides Prepared by JOHN LOUCKS  CONTEMPORARYBUSINESSSTATISTICS.
Tutorial 8: Working with Advanced Functions
Spreadsheets Objective 6.02
2 Explain advanced spreadsheet concepts and functions Advanced Calculations 1 Sabbir Saleh_Lecture_17_Computer Application_BBA.
Copyright 2007, Paradigm Publishing Inc. EXCEL 2007 Chapter 2 BACKNEXTEND 2-1 LINKS TO OBJECTIVES Naming Ranges Functions COUNT, COUNTA, COUNTIF, COUNTIFS.
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.
ACOT Intro/Copyright Succeeding in Business with Microsoft Excel 2010: Chapter1.
Syntax MROUND(number,multiple) Number is the value to round. Multiple is the multiple to which you want to round number. Remark MROUND rounds up, away.
Excel Projects 5 & 6 Notes Mr. Ursone. Excel Project 5: Sorting a List  Sorting: Arranging records in a specific sequence  The Sort command is on the.
MS Excel Management Information Systems 1. Contents 2  Functions  IF Function and nested IF  Sorting Data.  Filtering Data.  Data Form.  Data Validation.
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.
REACH-CRC © 2012 REACH-CRC. All Rights Reserved.FALL 2012.
Microsoft Office Excel 2013 ® ® Abdul Hameed Using Advanced Functions and Conditional Formatting.
CIS300 TEST REVIEW EXAM 2- PROFS. KENDRA, GOYAL & MCINTOSH REACH - CRC © 2014 REACH All Rights Reserved.
REACH-CRC © 2012 REACH-CRC. All Rights Reserved.FALL 2012.
Overview Excel is a spreadsheet, a grid made from columns and rows. It is a software program that can make number manipulation easy and somewhat painless.
More Spreadsheets Range Formulas & Empty Cells Logical Functions Lookup Functions.
Excel Review By Mr. Griffin Elmira Business Institute.
CIS300 Test Review REACH - CRC © 2010 REACH All Rights Reserved.Fall 2010.
Copyright © 2010 Pearson Education, Inc. Publishing as Prentice Hall2(2)-1 Chapter 2: Displaying and Summarizing Data Part 2: Descriptive Statistics.
RevisionRevision Function in Spreadsheet DATE Returns the serial number of a particular date. Syntax –DATE(year,month,day) year is a number from 1900.
CIS 100 Test #2 Review 1. EXCEL Functions on Test  SUM, COUNT, COUNTA, MAX, MIN, MEDIAN, MODE, AVERAGE, ROUND, and IF  Possibly Others 
Resource Review Excel formula basics Demonstrate how to enter manual formulas Examine some of the available functions and their usage Discuss the.
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.
CIS 300- Professor McIntosh Test #3. MICROSOFT ® EXCEL ® MATHEMATICAL FUNCTIONS Syntax: =ROUND(number, num_digits) Arguments: number Required  The number.
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.
BUSINESS MATHEMATICS & STATISTICS.
MSAA PRESENTS: AN EXCEL TUTORIAL
Excel FACT Function.
CSE111 Introduction to Computer Applications
Contents Introduction Text functions Logical functions
Excel ISERROR Function
Using Advanced Functions and Conditional Formatting
TRACKER Contents Intro Excel 101 Math Operations Formulas 101.
Descriptive Statistics
Excel STDEV.S Function.
Excel IF Function.
Excel Functions.
College of Engineering
REACH CRC Professor Reinhardt
CIS300 Test Review REACH - CRC Fall 2010
Excel REPT Function.
4.3 Measures of Variation LEARNING GOAL
Statistical Analysis with Excel
Statistical Analysis with Excel
Microsoft Excel – Part I
Excel Functions.
Excel Functions.
Spreadsheets 2 Explain advanced spreadsheet concepts and functions
Lesson 4: Introduction to Functions
REACH CRC Professor Manni
Spreadsheets Objective 6.02
Topic 3: Conditional Logic
REACH Computer Resource Center
Spreadsheets Objective 6.02
REACH Computer Resource Center
in Excel Instructor: Zhe He Department of Computer Science
Presentation transcript:

Excel AVERAGEIF Function

Excel AVERAGEIF Function Purpose  Get the average of numbers that meet criteria Return value  A number representing the average. Syntax  =AVERAGEIF (range, criteria, [average_range]) Arguments  range - One or more cells, including numbers or names, arrays, or references. criteria - A number, expression, cell reference, or text. average_range - [optional] The cells to average. When omitted, range is used. www.prolearninghub.com

Excel AVERAGEIF Function Usage notes  AVERAGEIF computes the average of the numbers in a range that meet the supplied criteria. If average_range is not supplied, the cells inrange are averaged. If average_range is supplied, cells cells inaverage_range that correspond to cells in range are averaged. To determine which cells are averaged, criteria is applied to range.Criteria can be supplied as numbers, strings, or references. For example, valid criteria could be 10, "10" ">10", or A1. www.prolearninghub.com

Excel AVERAGEIF Function Notes: Cells in range that contain TRUE or FALSE are ignored. Empty cells are ignored in range and average_range when calculating averages. AVERAGEIF returns #DIV/0! if no cells in range meet criteria. Average_range does not have to be the same size as range. The top left cell in average_range is used as the starting point, and cells that correspond to cells in range are averaged. AVERAGEIF allows the wildcard characters question mark (?) and asterisk (*), in criteria. The ? matches any single character and the * matches any sequence of characters. To find a literal ? or *, use a tilde (~) before the character, i.e. ~* and ~?. www.prolearninghub.com

Excel AVERAGEIF Function www.prolearninghub.com

Excel AVERAGEIFs Function

Excel AVERAGEIFS Function Purpose  Average cells that match multiple criteria Return value  The average of the cells that meet all criteria Syntax  =AVERAGEIFS (avg_rng, range1, criteria1, [range2], [criteria2], ...) Arguments  avg_rng - The range to average. range1 - The first range to evaulate. criteria1 - The criteria to use on range1. range2 - [optional] The second range to evaluate. criteria2 - [optional] The criteria to use on range2. www.prolearninghub.com

Excel AVERAGEIFS Function Usage notes  AVERAGEIFS averages cells in a range that match supplied criteria. Unlike the AVERAGEIF function, AVERAGEIFS can apply more than one set of criteria, with more than one range. The first range is the range to be averages. The criteria is supplied in pairs (range/criteria) and only the first pair is required. For each additional criteria, supply an additional range/criteria pair. Up to 127 range/criteria pairs are allowed. Note that the order of arguments is different between the AVERAGEIFS and AVERAGEIF functions. The range to average is the first argument in AVERAGEIFS, but the third argument in AVERAGEIF. www.prolearninghub.com

Excel AVERAGEIFS Function Notes: AVERAGEIFS returns the #DIV0! error value when no criteria are met Each additional range must have the same number of rows and columns as the avg_range. Non-numeric criteria needs to be enclosed in double quotes but numeric criteria does not. For example: 100, "100", ">32", "jim", or A1 (where A1 contains a number). The wildcard characters ? and * can be used in criteria. A question mark matches any one character and an asterisk matches any sequence of characters. To find a literal question mark or asterisk, use a tilde (~) in front question mark or asterisk (i.e. ~?, ~*). www.prolearninghub.com

Excel AVERAGEIFS Function www.prolearninghub.com

Excel COUNT Function

Excel COUNT Function Purpose Count numbers Return value A number representing a count of numbers. Syntax  =COUNT (value1, [value2], ...) Arguments  value1 - An item, cell reference, or range. value2 - [optional] An item, cell reference, or range. www.prolearninghub.com

Excel COUNT Function Usage notes Notes The COUNT function counts the number of numbers in supplied  values. Values can be items, cell references, or ranges. For example, =COUNT(1, 2, "apple") returns 2. And COUNT(A1:A10) will count the number of numeric values in the range A1:A10. Count can handle up to 255 additional values. Use COUNTA to include text and logical values. Use COUNTIF to count based on criteria. Notes Error values or text values that cannot be coerced into numbers are not counted The logical values TRUE and FALSE are not counted. Empty cells and text are not counted. www.prolearninghub.com

Excel COUNTA Function

Excel COUNTA Function Purpose Count the number of non-blank cells Return value  A number representing non-blank cells. Syntax  =COUNTA (value1, [value2], ...) Arguments  value1 - An item, cell reference, or range. value2 - [optional] An item, cell reference, or range. www.prolearninghub.com

Excel COUNTA Function Usage notes Use the COUNTA function to count cells that contain numbers, text, logical values, error values, and empty text (""). COUNTA does not count empty cells. COUNTA will also count items. For example, =COUNTA("a",1,2,3,"") returns 5. Use COUNT to count numeric values only. Count can handle up to 255 values. www.prolearninghub.com

Excel COUNTBLANK Function

Excel COUNTBLANK Function Purpose  Count cells that are blank Return value  A number representing blank cells Syntax  =COUNTBLANK (range) Arguments  range - The range in which to count blank cells. www.prolearninghub.com

Excel COUNTBLANK Function Usage notes  Use the COUNTBLANK function to count blank cells in a range. For example, COUNTBLANK(A1:A10) will count the number of blank cells in the range A1:A10. COUNTBLANK counts the number of cells in the range that don't contain any value and returns this number as the result. Cells that contain, text, numbers, errors, etc. are not counted. Cells that contain formulas that return empty text ("") are considered blank and will be counted. Cells that contain zero are considered not blank and will not be counted. www.prolearninghub.com

Excel COUNTIF Function

Excel COUNTIF Function Purpose  Count cells that match criteria Return value  A number representing cells counted. Syntax  =COUNTIF (range, criteria) Arguments  range - The range of cells to count. criteria - The criteria that controls which cells should be counted. Usage notes  The COUNTIF function in Excel counts the number of cells in a range that match the supplied criteria www.prolearninghub.com

Excel COUNTIF Function Non-numeric criteria needs to be enclosed in double quotes but numeric criteria does not: =COUNTIF(A1:A10,100) // count cells equal to 100 =COUNTIF(A1:A10,">32") // count cells greater than 32 =COUNTIF(A1:A10,"jim") // count cells equal to "jim" =COUNTIF(A1:A10,"<"&B1) // count cells less than value in B1 The wildcard characters ? and * can be used in criteria. A question mark matches any one character and an asterisk matches any sequence of characters. To find a literal question mark or asterisk, use a tilde (~) in front question mark or asterisk (i.e. ~?, ~*). See links on this page to more examples with detailed explanations. www.prolearninghub.com

Excel COUNTIF Function www.prolearninghub.com

Excel COUNTIFS Function

Excel COUNTIFS Function Purpose  Count cells that match multiple criteria Return value  The number of times criteria are met Syntax  =COUNTIFS (range1, criteria1, [range2], [criteria2], ...) Arguments  range1 - The first range to evaluate. criteria1 - The criteria to use on range1. range2 - [optional] The second range to evaluate. criteria2 - [optional] The criteria to use on range2. www.prolearninghub.com

Excel COUNTIFS Function Usage notes  COUNTIFS counts the number of cells in a range that match supplied criteria. Unlike the COUNTIF function, COUNTIFS can apply more than one set of criteria, with more than one range. Ranges and criteria are applied in pairs, and only the first pair is required. For each additional criteria, you must supply another range/criteria pairs. Up to 127 range/criteria pairs are allowed. www.prolearninghub.com

Excel COUNTIFS Function Notes: Each additional range must have the same number of rows and columns as range 1, but ranges do not need to be adjacent. If you supply ranges with a mismatch, you'll get a #VALUE error. Non-numeric criteria needs to be enclosed in double quotes but numeric criteria does not. For example: 100, "100", ">32", "jim", or A1 (where A1 contains a number). The wildcard characters ? and * can be used in criteria. A question mark matches any one character and an asterisk matches any sequence of characters. To find a literal question mark or asterisk, use a tilde (~) in front question mark or asterisk (i.e. ~?, ~*). www.prolearninghub.com

Excel COUNTIFS Function www.prolearninghub.com

Excel FREQUENCY Function

Excel FREQUENCY Function Purpose  Get the frequency of values in a data set Return value  A vertical array of frequencies Syntax  =FREQUENCY (data_array, bins_array) Arguments  data_array - An array of values for which you want to get frequencies. bins_array - An array of intervals ("bins") for grouping values. www.prolearninghub.com

Excel FREQUENCY Function Usage notes  You can use Excel's FREQUENCY function to create a frequency distribution - a summary table that shows the frequency (count) of each value in a range.  FREQUENCY counts how often values occur in a set of data. It returns a vertical array of numbers that represent frequencies. Notes: Because FREQUENCY always returns an array, it needs to be entered as an array formula or with other functions that handle the array. FREQUENCY always returns an array with one more item than the bins_array. This is by design, to catch any values greater than the largest interval in the bins_array. www.prolearninghub.com

Excel FREQUENCY Function To create a frequency distribution using FREQUENCY: Enter numbers that represent the bins you want to group values into Make a selection the same size as the range that contains bins, or one greater if want to include the extra item Enter the FREQUENCY function as an array formula using Control+Shift+Enter www.prolearninghub.com

Excel LARGE Function

Excel LARGE Function Purpose Return value Syntax Arguments Get the nth largest value Return value  The nth largest value in the array. Syntax  =LARGE (array, n) Arguments  array - The array from which you want to select the kth largest value. n - An integer that specifies the position from the largest value, i.e. the nth position. www.prolearninghub.com

Excel LARGE Function Usage notes The LARGE function is useful when you want to retrieve  the nth highest value from a set of data — for example, the first, second, or third highest scores for a test. Like the SMALL function, the LARGE function retrieves numeric values based on their position in a list when sorted by value. Note: Microsoft documentation refers to "k" instead of "n". We use n because "nth" is much easier to say. www.prolearninghub.com

Excel LARGE Function www.prolearninghub.com

Excel MAX Function

Excel MAX Function Purpose Return value Syntax Arguments Usage notes Get the largest value Return value  The largest value in the array. Syntax  =MAX (array) Arguments  array - The array from which you want to select the largest value. Usage notes  The MAX function is useful when you want to retrieve the largest value from a set of data. For example, the highest score in a test. array can be an array constant or a range of cells. www.prolearninghub.com

Excel MAX Function www.prolearninghub.com

Excel MEDIAN Function

Excel MEDIAN Function Purpose Return value Syntax Arguments Get the median of a group of numbers Return value  A number representing the median. Syntax  =MEDIAN (number1, [number2], ...) Arguments  number1 - A number or cell reference that refers to numeric values. number2 - [optional] A number or cell reference that refers to numeric values. www.prolearninghub.com

Excel MEDIAN Function Usage notes The MEDIAN function returns the median (middle number) in a group of supplied arguments. For example, =MEDIAN(1,2,3,4,5) returns 3. When the total number of supplied numbers is odd, the median is calculated as the middle number in the group. When the total number of supplied numbers is even, the median is calculated as the average of the two numbers in the middle. Numbers can be supplied as numbers, ranges, named ranges, or cell references that contain numeric values. Up to 255 numbers can be supplied. www.prolearninghub.com

Excel MIN Function

Excel MIN Function Purpose Return value Syntax Arguments Usage notes Get the smallest value. Return value  The smallest value in the array. Syntax  =MIN (array) Arguments  array - The array from which you want to select the largest value. Usage notes  The MIN function is useful when you want to retrieve the smallest value from a set of data. For example, the fastest time in a race. array can be an array constant or a range of cells. www.prolearninghub.com

Excel MIN Function www.prolearninghub.com

Excel MODE Function

Excel MODE Function Purpose Return value Syntax Arguments Get the mode of a group of numbers Return value  A number representing the mode. Syntax  =MODE (number1, [number2], ...) Arguments  number1 - A number or cell reference that refers to numeric values. number2 - [optional] A number or cell reference that refers to numeric values. www.prolearninghub.com

Excel MODE Function Usage notes The MODE function returns the mode (most frequently occurring number) in a group of supplied arguments. For example, =MODE(1,2,4,4,5,5,5,6) returns 5. Numbers can be supplied as numbers, ranges, named ranges, or cell references that contain numeric values. Up to 255 numbers can be supplied. If the set of supplied numbers does not contain any duplicates, MODE will return #N/A Note: MODE is now classified as a "compatibility function". Microsoft recommends that MODE.SNGL or MODE.MULTI be used instead. www.prolearninghub.com

Excel QUARTILE Function

Excel QUARTILE Function Purpose  Get the quartile in a data set Return value  Value for requested quartile Syntax  =Quartile (array, quart) Arguments  array - A reference containing data to analyze. quart - The quartile value to return. www.prolearninghub.com

Excel QUARTILE Function Usage notes  Use the QUARTILE function to get the quartile for a given set of data. QUARTILE takes two arguments, the array containing numeric data to analyze, and quart, indicating which quartile value to return. The QUARTILE function accepts 5 values for the quart argument, as shown the in the table below. Quart Return value Min value 1 First quartile – 25th percentile 2 Median value – 50th percentile 3 Third quartile – 75th percentile 4 Max value www.prolearninghub.com

Excel QUARTILE Function www.prolearninghub.com

Excel RANK Function

Excel RANK Function Purpose Return value Syntax Arguments Rank a number against a range of numbers Return value  A number that indicates rank. Syntax  =RANK (number, array, [order]) Arguments  number - The number to rank. array - An array that contains the numbers to rank against. order - [optional] Whether to rank in ascending or descending order. www.prolearninghub.com

Excel RANK Function Usage notes Use RANK when you want to provide a rank for items in a list, but you don't want to sort the list. The default for order  is 0 = descending order: If order is 0 or omitted, number is ranked by position against the numbers in array sorted in descending order. If order is 1, then number is ranked by position against the numbers inarray sorted in ascending order. www.prolearninghub.com

Excel RANK Function www.prolearninghub.com

Excel SMALL Function

Excel SMALL Function Purpose Get the nth smallest value Return value The nth smallest value in the array. Syntax  =SMALL (array, n) Arguments  array - A range of cells from which to extract smallest values. n - An integer that specifies the position from the smallest value, i.e. the nth position. www.prolearninghub.com

Excel SMALL Function Usage notes The SMALL function is useful when you want to retrieve the nth lowest value from a set of data — for example, the first, second, or third fastest times in a race. Like LARGE, the SMALL function retrieves numeric values based on theirposition in a list when sorted by value. Note: Microsoft documentation refers to "k" instead of "n". We use n because "nth" is much easier to say. www.prolearninghub.com

Excel SMALL Function www.prolearninghub.com

Excel STDEV Function

Excel STDEV Function Purpose Return value Syntax Arguments Usage notes Get the standard deviation in a sample Return value  Estimated standard deviation Syntax  =STDEV (number1, [number2], ...) Arguments  number1 - First number or reference in the sample. number2 - [optional] Second number or reference. Usage notes  The STDEV function calculates the standard deviation in a sample set of data. www.prolearninghub.com

Excel STDEV Function Notes: Note: STDEV has been replaced with a newer function called STDEV.S, which has identical behavior. Although STDEV still exists for backwards compatibility, Microsoft recommends that people use the newer STDEV.S function instead. Notes: STDEV calculates standard deviation using the "n-1" method. STDEV assumes your data is a sample only. When your data is complete (i.e. when your data representations the entire population), calculate standard deviation using the STDEVP function (or it's more current replacement, the STDEV.P function). www.prolearninghub.com

Excel STDEV Function Numbers are supplied as arguments. They can be supplied as actual numbers, ranges, arrays, or references that contain numbers. The STDEV function will include numbers entered as text and logical values when they are entered directly as arguments. However, when an argument is an array or reference, empty cells, logical values, text, and error values are ignored. When you want to include logical values and/or numbers as text in a reference, use the STDEVA function. www.prolearninghub.com

Excel STDEV Function www.prolearninghub.com

Excel STDEV.P Function

Excel STDEV.P Function Purpose Return value Syntax Arguments Get standard deviation of population Return value  Estimated standard deviation Syntax  =STDEV.P (number1, [number2], ...) Arguments  number1 - First number or reference in the sample. number2 - [optional] Second number or reference. Usage notes  The STDEV.P function calculates the standard deviation in a sample set of data. www.prolearninghub.com

Excel STDEV.P Function Standard deviation is a measure of how much variance there is in a set of numbers compared to the average (mean) of the numbers. Note: STDEV.P replaces the STDEVP function, with identical behavior. Although STDEVP still exists for backwards compatibility, Microsoft recommends that people use the newer STDEV.P function instead. Notes: STDEV.P calculates standard deviation using the "n" method, ignoring logical values and text. STDEV.P assumes your data is the entire population. When your data is a sample set only, calculate standard deviation using the STDEV.S function. Numbers are supplied as arguments. They can be supplied as actual numbers, ranges, arrays, or references that contain numbers. The STDEV.P function ignores logical values and text. If  you want to include logical values and/or numbers as text in a reference, use the STDEVA function. www.prolearninghub.com

Excel STDEV.P Function www.prolearninghub.com