Excel Formulas Mastery Module
1. Understanding Excel Formulas
- Formula basics: Every formula starts with an = sign. Example: =A1+B1
- Cell references: Use cell addresses (like A1, B2) so formulas update automatically.
- Operators:
+ + (addition)
+ - (subtraction)
+ * (multiplication)
+ / (division)
+ ^ (exponent)
2. Essential Formula Types
Arithmetic Formulas:
- =A1+B1 -> Adds values in cells A1 and B1.
- =A1*B1 -> Multiplies values.
Statistical Formulas:
- =SUM(A1:A10) -> Adds all values from A1 to A10.
- =AVERAGE(B1:B10) -> Finds the mean.
- =MAX(C1:C10) -> Finds the largest value.
- =MIN(C1:C10) -> Finds the smallest value.
Logical Formulas:
- =IF(A1>50,"Pass","Fail")
- =AND(A1>0,B1<100)
- =OR(A1>0,B1<100)
Lookup Formulas:
- =VLOOKUP(101, A2:D20, 3, FALSE)
- =HLOOKUP(...)
- =INDEX(range, row_num, col_num)
- =MATCH(lookup_value, range, 0)
Excel Formulas Mastery Module
3. Best Practices for Using Formulas
- Use absolute references ($A$1) to prevent cell reference changes.
- Name ranges for clarity (e.g., =SUM(Sales)).
- Combine formulas for powerful results (e.g., =IF(AVERAGE(A1:A10)>50,"Good","Poor")).
- Check errors:
- #DIV/0! -> Division by zero.
- #N/A -> Value not found.
- #VALUE! -> Wrong data type.
4. Practical Examples
- Grade Calculator: =IF(B2>=75,"Passed","Failed")
- Sales Commission: =IF(C2>10000,C2*0.1,C2*0.05)
- Monthly Total: =SUM(D2:D31)
5. Tips to Work Faster
- AutoFill: Drag formula down to apply to multiple rows.
- Function Wizard: Use fx button to insert functions.
- Shortcuts:
- Ctrl + Shift + Enter -> For array formulas.
- Alt + = -> AutoSum quickly.
- F4 -> Toggle between relative/absolute references.
6. Practice Challenge
You have a table of student scores in column B. Write a formula that:
- Returns "Excellent" if score >= 90
- Returns "Good" if score >= 75
- Returns "Needs Improvement" otherwise
Hint: Use nested IF formulas:
=IF(B2>=90,"Excellent",IF(B2>=75,"Good","Needs Improvement"))