Module 5 - Excel Lesson 2 Microsoft Excel 2016
Module 5 - Excel Lesson 2 Microsoft Excel 2016
(FUNCTIONS)
Functions
The basic syntax for a function is the equals sign (=), the
function name (SUM, for example), and one or more
arguments.
The parts of a function (EXAMPLE)
Working with arguments
SUM: This function adds all of the values of the cells in the argument.
AVERAGE: This function determines the average of the values included in the
argument. It calculates the sum of the cells and then divides that value by the
number of cells in the argument.
COUNT: This function counts the number of cells with numerical data in the
argument. This function is useful for quickly counting items in a cell range.
MAX: This function determines the highest cell value included in the argument.
MIN: This function determines the lowest cell value included in the argument.
SUM Function – Explanation
Syntax
=SUM(value1,value2,value3…)
AVERAGE Function – Explanation
Use AVERAGE function to calculate the
arithmetic mean of a range of cells.
Syntax
=AVERAGE(number1,[number2],[number3]…)
=AVERAGE(C2:C4)
MAX Function – Explanation
Syntax
=MAX(value1,value2,value3…)
=MAX(A2:A6)
MIN Function – Explanation
MIN function is the opposite of MAX function,
and it’s used when we want to find the minimum
value within a range of cells.
Syntax
=MIN(value1,value2,value3…)
=MIN(A2:A4)
COUNT Function – Explanation
Syntax
The syntax of the COUNT function is as follows:
=COUNT(B2:B5)
COUNTA Function – Explanation
Non-numeric values are usually text values, for
example, dog, cat, eleven etc. For non-numeric
values, we will use COUNTA function which counts
all values in range.
Syntax
=COUNTA(value1,[value2],[value3]…)
=COUNTA(B2:B8)
END