πΉ 1. Introduction to Formulas
β’ What is a formula in Excel?
β’ Formula bar and how to enter a formula
β’ Using = to begin all formulas
β’ Understanding cell references (A1, B2, etc.)
β’ Order of operations (BODMAS in Excel)
________________________________________
πΉ 2. Cell References
β’ Relative Reference (e.g., =A1+B1)
β’ Absolute Reference (e.g., =$A$1+$B$1)
β’ Mixed Reference (e.g., =A$1+$B2)
β’ Use of $ symbol in locking cells
________________________________________
πΉ 3. Mathematical Functions
β’ SUM() β Add numbers
β’ SUBTOTAL(), PRODUCT(), POWER()
β’ ROUND(), ROUNDUP(), ROUNDDOWN()
β’ MOD() β Remainder after division
β’ ABS() β Absolute value
β’ RAND(), RANDBETWEEN()
________________________________________
πΉ 4. Text Functions
β’ CONCAT() / TEXTJOIN() β Combine strings
β’ LEFT(), RIGHT(), MID()
β’ LEN() β Character count
β’ TRIM() β Remove extra spaces
β’ UPPER(), LOWER(), PROPER()
β’ FIND(), SEARCH(), REPLACE(), SUBSTITUTE()
________________________________________
πΉ 5. Logical Functions
β’ IF() β Conditional statement
β’ AND(), OR(), NOT()
β’ Nested IF() formulas
β’ IFS() β Multiple conditions without nesting
β’ IFERROR(), IFNA()
________________________________________
πΉ 6. Lookup & Reference Functions
β’ VLOOKUP() β Vertical lookup
β’ HLOOKUP() β Horizontal lookup
β’ XLOOKUP() β Advanced lookup (newer Excel)
β’ INDEX() + MATCH() β Powerful combination
β’ LOOKUP() β Basic alternative
________________________________________
πΉ 7. Date & Time Functions
β’ TODAY(), NOW()
β’ DATE(), TIME()
β’ DAY(), MONTH(), YEAR()
β’ HOUR(), MINUTE(), SECOND()
β’ DATEDIF() β Difference between dates
β’ NETWORKDAYS(), WORKDAY()
________________________________________
πΉ 8. Count & Statistical Functions
β’ COUNT(), COUNTA(), COUNTBLANK(), COUNTIF(), COUNTIFS()
β’ AVERAGE(), AVERAGEIF(), AVERAGEIFS()
β’ MAX(), MIN(), MEDIAN(), MODE()
β’ STDEV(), VAR()
________________________________________
πΉ 9. Financial Functions
β’ PMT() β Loan payment calculation
β’ FV(), PV() β Future and present value
β’ NPV(), IRR(), RATE()
________________________________________
πΉ 10. Array Formulas & Dynamic Arrays
β’ What is an array formula?
β’ Using {} (curly brackets) in legacy array formulas
β’ UNIQUE(), SORT(), FILTER() β Dynamic array functions
β’ SEQUENCE(), TRANSPOSE(), SINGLE()
________________________________________
πΉ 11. Error Handling Functions
β’ ISERROR(), ISNUMBER(), ISBLANK()
β’ IFERROR() β Custom message for error
β’ ERROR.TYPE()
________________________________________
πΉ 12. Useful Utilities with Formulas
β’ Conditional Formatting using formulas
β’ Data Validation using formulas
β’ Creating dynamic charts using formulas
β’ Formulas in Pivot Tables and Slicers
________________________________________
πΉ 13. Practice Scenarios
β’ Marksheet creation with grade system using IF
β’ Attendance system using COUNTIF
β’ Expense calculator using SUMIF
β’ Age calculator using DATEDIF
β’ Employee database with VLOOKUP