Where are the Functions?
In Excel, functions located under the Formula tab.
Finding the Right Functions
- If you know the exact category for the formula you want to use, you can find them either from the Function Library group in the Formulas tab or select a category from the Insert Function box.
- If you are not sure which category or what is the exact name of the formula you want to use, just type in a keyword in the Search for functions: box and click Go or press Enter.
- Excel will show some recommended formulas in the Select a function: list.
Inserting Functions
Some Useful and Simple Functions
Sum Functions
For instance:
- =SUM(A2: A10)
- =SUM(A2:A10, C2:C10)
Average Functions
Returns the average (arithmetic mean) of the arguments. For example, if the range A1: A20 contains numbers, the formula =AVERAGE(A1: A20) returns the average of those numbers.
Syntax AVERAGE(number1, [number2], ...)
The AVERAGE function syntax has the following arguments:
- Number1 Required. The first number, cell reference, or range for which you want the average.
- Number2, ... Optional. Additional numbers, cell references or ranges for which you want the average, up to a maximum of 255.
Max Function
Returns the largest value in a set of values.
Syntax MAX(number1, [number2], ...)
The MAX function syntax has the following arguments:
- Number1, number2, ... Number1 is required, subsequent numbers are optional. 1 to 255 numbers for which you want to find the maximum value.
Min Function
Returns the smallest number in a set of values.
Syntax MIN(number1, [number2], ...)
The MIN function syntax has the following arguments:
- Number1, number2, ... Number1 is optional, subsequent numbers are optional. 1 to 255 numbers for which you want to find the minimum value.
Count Functions
The COUNT function counts the number of cells that contain numbers and counts numbers within the list of arguments. Use the COUNT function to get the number of entries in a number field that is in a range or array of numbers.
Syntax COUNT(value1, [value2], ...)
The COUNT function syntax has the following arguments:
- value1 Required. The first item, cell reference, or range within which you want to count numbers.
- value2, ... Optional. Up to 255 additional items, cell references, or ranges within which you want to count numbers.