More About MS Excel 2010
More About MS Excel 2010
More About
6
MS Excel
2010
Grade-
BY 6
SHAHANA C
H
° Introduction
° Formatting numbers
° Modifying data
° Formatting data
° Creating custom
lists
° Formulas and
functions
MS Excel
Microsoft Excel is a powerful tool for
organizing, calculating, and analyzing
data.
It resembles a big table with rows and
columns, where we can enter numbers,
words, and formulas.
What Can We Do with Excel?
Example:
1️Type Apple, Banana, Mango in A1:A3
2️In B1, enter =VLOOKUP("Orange", A1:A3, 1, FALSE)
3️It will show #N/A because "Orange" is not in the list.
Example:
1️Type 10 in A1
2 Type Hello in A2
3️Type =A1 + A2 in A3
4️You will get #VALUE! because Excel cannot add a
number to text.
✅ Fix: Use only numbers or check for unwanted text
3. #NAME? Error (Misspelled Function)
Example:
1️⃣Type =SUMM(A1:A3) (instead of
=SUM(A1:A3))
2️⃣You will get #NAME? because "SUMM" is
not a function.
Example:
1️⃣Type 5 in A1 and 10 in A2
2️⃣In A3, type =A1+A2 (Result = 15)
3️⃣Now, delete A1.
4️⃣A3 will now show #REF! because the reference (A1) is
missing.
✅ Fix:
🔹 Undo (Ctrl + Z) to bring back the deleted cell.
🔹 Check which reference is missing and fix it.
. #NULL! Error (Invalid Range)
Example:
1️⃣Type =SUM(A1 A3) (without a separator).
2️⃣It will show #NULL! because there should be a colon (:) for a
range.
✅ Fix:
🔹 Correct it to =SUM(A1:A3) or =SUM(A1, A3)
🔹
Bonus Challenge: Add an IFERROR() function to avoid errors.
Example: =IFERROR(A1/A2, "Invalid Division")
📍 4. Using Function Library – GCD() (Greatest Common Divisor)
🎯 Objective: Teach how to use Function Library and find the Greatest Common Divisor (GCD).
Activity:
Enter 36 in A1 and 48 in A2. Type =GCD(A1, A2).
Press Enter → Excel will show 12.
Explain that GCD finds the largest number that divides both numbers exactly.