Lesson 4.4: Basic Formulas and Functions
Spreadsheets are powerful tools for calculations and data analysis. You can use formulas and functions to perform mathematical operations quickly and accurately.
➕ 1. What is a Formula?
A formula is an equation that performs calculations using cell values.
-
Every formula starts with an equal sign (=)
-
You can use operators like
+,-,*,/
📌 Examples:
-
=A1 + B1→ Adds values in A1 and B1 -
=A2 * 10→ Multiplies A2 value by 10
📊 2. What is a Function?
A function is a predefined formula — easy to use and time-saving.
📌 Common Functions:
| Function | Purpose | Example |
|---|---|---|
SUM() |
Adds numbers | =SUM(A1:A5) |
AVERAGE() |
Calculates average | =AVERAGE(B1:B4) |
MAX() |
Finds largest value | =MAX(C1:C10) |
MIN() |
Finds smallest value | =MIN(D1:D5) |
COUNT() |
Counts numeric entries | =COUNT(E1:E10) |
🧮 3. Using Cell References
Instead of typing numbers directly, you can refer to cell addresses:
-
=A1 + B1is better than=10 + 20because it updates automatically
📌 4. AutoSum Tool
Quick way to add numbers:
-
Select empty cell below numbers
-
Click AutoSum (Σ) on toolbar
-
Press Enter
Formulas and functions help you calculate data easily and reduce human errors. Mastering them makes your work faster and smarter.
