Excel study material
Excel study material
Think of Excel like a giant grid or notebook. Each square is called a cell. Cells are organized
into columns (labeled A, B, C, etc.) and rows (labeled 1, 2, 3, etc.). You can write numbers,
words, or formulas inside these cells.
We’ll start with simple formulas and then move to advanced functions. A formula is like a
recipe you tell Excel to follow.
Instead of typing numbers directly, you can use cell references (like B2, A3) to create formulas.
Imagine you want Excel to check something and do different things based on whether it’s true or
false. We use IF statements.
● Step 1: In cell B1, type =IF(A1>10, "Yes", "No") and press Enter.
● Result: If the value in A1 is greater than 10, B1 will show "Yes." Otherwise, it will show
"No."
Sometimes you have a big list, and you want Excel to find specific information from that list.
Imagine you have a list of items and prices, and you want to find the price of a specific item.
Pivot tables help you quickly analyze and summarize large amounts of data.
This feature lets you create dropdown menus or restrict what can be entered in a cell.
● Step 1: Select the cells where you want the dropdown (e.g., A1
).
● Step 2: Go to Data > Data Validation.
● Step 3: In the box that appears, choose List and enter the values you want (e.g., "Apple,
Banana, Carrot").
● Result: Now, when you click on those cells, you’ll have a dropdown to pick from.
Macros let you record tasks and play them back, so Excel can do them for you automatically.
Summary of Tools:
Imagine you have a list of words and need to change one specific word across the entire sheet.
Excel has built-in functions that help you manipulate words (text) in different ways.
These functions let you take pieces of a word or sentence from the beginning, middle, or end.
● Step 1: In cell C1, type =CONCATENATE(A1, " ", B1) or =A1 & " " & B1.
● Result: Excel will join "John" and "Doe" together with a space in between to make "John
Doe."
Sometimes text data has extra spaces that mess things up. The TRIM function removes all
unnecessary spaces.
● Step 1: If cell A1 contains " Hello World " with extra spaces, type =TRIM(A1) in another
cell.
● Result: It will return "Hello World" without the extra spaces.
Both SEARCH and FIND locate the position of a word or letter inside a cell. The difference is
that SEARCH is case-insensitive (doesn’t care about uppercase or lowercase), while FIND is
case-sensitive.
● SEARCH: =SEARCH("apple", A1) will return 8, because "apple" starts at the 8th
character.
● FIND: =FIND("Apple", A1) would return an error because "Apple" with a capital "A"
doesn’t exist, but =FIND("apple", A1) would return 8.
If you want to replace only certain parts of a sentence, use the SUBSTITUTE function.
You can use this to replace only specific words or phrases without affecting the entire sentence.
The LEN function tells you how many characters (letters, spaces, and numbers) are in a cell.
Imagine you have a list of names like "John Doe" in a single cell, but you want to separate the
first and last names into two different columns. You can use Text to Columns to do this.
● Step 1: Select the column with the data (e.g., column A with "John Doe").
● Step 2: Go to Data > Text to Columns.
● Step 3: Choose Delimited (if there’s a space, comma, or other separator between the
names).
● Step 4: Select the space checkbox as the delimiter and click Finish.
● Result: "John Doe" will be split into two columns—one with "John" and another with
"Doe."
If you have a number 100 in cell A1 and you want it to say "100 apples," you can use: