The Basics of Excel Formulas
The Basics of Excel Formulas
formulas
Formula
For Example:
=sum (A2:A4)
Excel basic functions you should
definitely know
=SUM(number1,[number2],…)
EXAMPLE
=SUM(B2:G2) – A simple selection that sums the values of a row
=SUM(A2:A8)/20 – Shows you can also turn your function into a formula
1. 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
=AVERAGE(B2:B11) – Shows a simple average, also similar to
(SUM(B2:B11)/10)
1. Count – The count function counts all cells in a given range
that contain only numeric values.
=COUNT(value1,[value2],…)
EXAMPLE
COUNT(A:A) – Counts all values that are numerical in A column. However, you
must adjust the range inside the formula to count rows.
=MIN(number1,[number2],…)
EXAMPLE
=MIN(B2:B11) – Finds the minimum number between column B from B2 to row
11 in both column B
EXAMPLE
=MAX(B2:B11) – Similarly, it finds the maximum number between column B2
from B11 to row 11 in column B
OTHER IMPORTANT FORMULA FOR
BASIC OPERATION
=SUM(A1:110) adds all values from A1 to A10 in column A
=SUM(A1+A2+A3+A4+A5+A6+A7+A8+A9+A10) is Equal to (A1:A10)
=SUM(A1,A2,A5,A4) adds only specified cell
=(A2*A3) Multiple the values of A2 and A3
=(B1-B2) Subtract the values of B1 to B2
=(C1/C2) Divide the values of C1 to C2
Introduction To
Formulas
Common Arithmetic Operations
= Equal To
> Greater Than
< Less Than
>= greater than or equal to
<= less than or equal to
<>or>< Not Equal to
Order of Calculation
1. Exponent (Λ)
2. Multiplication (*) and Division (/)
3. Addition (+) and Subtraction (-)
Order of Calculation