Excel Basic Part 1
Excel Basic Part 1
Since you’re now able to insert your preferred formulas and function
correctly, let’s check some fundamental Excel functions to get you started.
1. SUM
=SUM(number1, [number2], …)
Example:
=SUM(A2:A8)/20 – Shows you can also turn your function into a formula.
2. AVERAGE
The AVERAGE function should remind you of simple averages of data, such
as the average number of shareholders in a given shareholding pool.
=AVERAGE(number1, [number2], …)
Example:
3. COUNT
The COUNT function counts all cells in a given range that contain only
numeric values.
=COUNT(value1, [value2], …)
Example:
Like the COUNT function, COUNTA counts all cells in a given rage.
However, it counts all cells regardless of type. That is, unlike COUNT that
only counts numerics, it also counts dates, times, strings, logical values,
errors, empty string, or text.
=COUNTA(value1, [value2], …)
Example:
The IF function is often used when you want to sort your data according to
a given logic. The best part of the IF formula is that you can embed
formulas and functions in it.
Example:
The TRIM function makes sure your functions do not return errors due to
extra spaces in your data. It ensures that all empty spaces are eliminated.
Unlike other functions that can operate on a range of cells, TRIM only
operates on a single cell. Therefore, it comes with the downside of adding
duplicated data to your spreadsheet.
=TRIM(text)
Example:
The MAX and MIN functions help in finding the maximum number and the
minimum number in a range of values.
=MIN(number1, [number2], …)
Example:
=MAX(number1, [number2], …)
Example: