EXCEL FUNCTIONS
EXCEL FUNCTIONS
1. SUM Function
The `SUM` function adds all the numbers in a specified range or set of numbers.
number1, number2, ...: These are the numbers or ranges you want to add. You can
input individual numbers, cell references, or ranges.
2. AVERAGE Function
The `AVERAGE` function calculates the mean (average) of a specified range or set of
numbers.
number1, number2, ...: These are the numbers or ranges you want to average. You
can input individual numbers, cell references, or ranges.
3. RANDBETWEEN Function
The `RANDBETWEEN` function generates a random integer between two specified numbers.
4. UPPER Function
The `UPPER` function converts all letters in a text string to uppercase.
Syntax: UPPER(text)
text: The text string you want to convert to uppercase. It can be a direct string or a
reference to a cell containing the text.
5. LOWER Function
The `LOWER` function converts all letters in a text string to lowercase.
Syntax: LOWER(text)
6. PROPER Function
The `PROPER` function capitalizes the first letter of each word in a text string.
Syntax: PROPER(text)
text: The text string you want to convert to proper case (first letter of each word
capitalized). It can be a direct string or a reference to a cell containing the text.
Example: `=PROPER("hello world")` converts "hello world" to "Hello World".
7. ROW Function
The `ROW` function returns the row number of a reference.
Syntax: ROW([reference])
reference: The cell or range of cells for which you want the row number. If omitted,
the function returns the row number of the cell in which the formula is entered.
8. COUNT Function
The `COUNT` function counts the number of cells that contain numeric values in a range.
value1, value2, ...: These are the numbers, cell references, or ranges that you want
to count. Only cells containing numbers are counted.
Example: `=COUNT(C1:C10)` counts the number of cells with numbers in the range C1 to
C10.
9. COUNTA Function
The `COUNTA` function counts the number of non-empty cells in a range.
value1, value2, ...: These are the cell references or ranges you want to count. Cells
with any data (numbers, text, etc.) are counted.
Example: `=COUNTA(D1:D10)` counts the number of non-empty cells in the range D1 to D10.
Syntax: COUNTBLANK(range)
range: The range of cells in which you want to count the empty cells.
Example: `=COUNTBLANK(E1:E10)` counts the number of empty cells in the range E1 to E10.