Lecture 2 NOTES 2
Lecture 2 NOTES 2
Objective:
Shivanjali deore
Teach students how to perform basic calculations and use
functions.
1. Basic Formulas
1. Relative References: These change when a formula is copied to another cell. For
example, if you have =A1+B1 in cell C1 and you copy it to C2, it becomes =A2+B2.
2. Absolute References: These do not change when a formula is copied. Use $ to lock
either the row, the column, or both. For example, $A$1 always refers to cell A1.
ASSIGNMENT1:
• Change the formula in C1 to use absolute references (e.g., $A$1 + $B$1) and copy it
again.
ASSIGNMENT2:
2. Common Functions
ASSIGNMENT3:
• Use SUM, AVERAGE, MIN, and MAX functions in cells B1 to B4 to calculate the
respective values.
ASSIGNMENT4:
• Use COUNT and COUNTA functions to count the numeric and non-empty cells in
columns B1 and B2.
• CONCATENATE(text1, text2, ...): Joins several text strings into one. E.g.,
=CONCATENATE(A1, " ", B1)
• LEFT(text, num_chars): Extracts a given number of characters from the left of a text
string. E.g., =LEFT(A1, 3)
• RIGHT(text, num_chars): Extracts a given number of characters from the right of a text
string. E.g., =RIGHT(A1, 3)
ASSIGNMENT5:
• Use CONCATENATE in cell C1 to join first and last names with a space in between.
• Use LEFT, RIGHT, and MID functions to extract parts of names as specified.
ASSIGNMENT6:
• Drag the fill handle (small square at the cell's bottom-right corner) to fill adjacent cells
with a series or pattern.
ASSIGNMENT7:
• Use AutoFill to drag and fill cells A2 to A7 with the days of the week.
4. Error Handling
Common Errors
ASSIGNMENT8:
Practice these assignments and ask any questions you might have!
Shivanjali deore