STATISTICAL FUNCTION
1. MAX FUNCTION ()
Summary
The Excel MAX function returns the largest numeric value in a range of values. The MAX function ignores empty cells, the logical values TRUE and FALSE, and text values.
Purpose
Get the largest value
Return value
The largest value in the array.
Syntax
=MAX (number1, [number2], ...)
Arguments
Usage notes
2. MIN FUNCTION ()
Summary
The Excel MIN function returns the smallest numeric value in a range of values. The MIN function ignores empty cells, the logical values TRUE and FALSE, and text values.
Purpose
Get the smallest value.
Return value
The smallest value in the array.
Syntax
=MIN (number1, [number2], ...)
Arguments
Usage notes
3.AVERAGE FUNCTION ()
Summary
The Excel AVERAGE function returns the average of values supplied as multiple arguments. AVERAGE can handle up to 255 individual arguments, which can include numbers, cell references, ranges, arrays, and constants.
Purpose
Get the average of a group of numbers
Return value
A number representing the average.
Syntax
=AVERAGE (number1, [number2], ...)
Arguments
Usage notes
4.COUNT FUNCTION ()
Summary
The Excel COUNT function returns the count of values that are numbers, generally cells that contain numbers. Values can be supplied as constants, cell references, or ranges.
Purpose
Count numbers
Return value
A number representing a count of numbers.
Syntax
=COUNT (value1, [value2], ...)
Arguments
Usage 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.
5. COUNTIF FUNCTION ()
Summary
COUNTIF is a function to count cells that meet a single criteria. COUNTIF can be used to count cells with dates, numbers, and text that match specific criteria. The COUNTIF function supports logical operators (>,<,<>,=) and wildcards (*,?) for partial matching.
Purpose
Count cells that match criteria
Return value
A number representing cells counted.
Syntax
=COUNTIF (range, criteria)
Arguments
Usage notes
The COUNTIF function in Excel counts the number of cells in a range that match the supplied criteria
Non-numeric criteria needs to be enclosed in double quotes but numeric criteria does not:
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. ~?, ~*).
Comments
Post a Comment