Excel Lookup : Reference Formulas for Beginners
Microsoft Office apps like Word, Excel, and PowerPoint are essential tools for students and beginners in school, college, and early careers.

๐Ÿงฎ Top 50 Excel Formulas You Must Know (With Examples)

Top 50 Excel Formulas

Microsoft Excel is more than just a spreadsheet tool โ€” itโ€™s the backbone of modern data analysis, budgeting, and reporting. Whether youโ€™re an analyst, student, accountant, or business owner, mastering Excel formulas can save you hours of manual work and make you look like a data wizard.

Hereโ€™s a curated list of the top 50 Excel formulas every professional should know โ€” from basic arithmetic to advanced lookups and logic functions.

๐Ÿ”น Basic Excel Formulas

  1. SUM โ€“ Adds up a range of numbers.
    =SUM(A1:A10)
  2. AVERAGE โ€“ Calculates the average of numbers.
    =AVERAGE(B1:B10)
  3. MIN โ€“ Finds the smallest number in a range.
    =MIN(C1:C10)
  4. MAX โ€“ Finds the largest number in a range.
    =MAX(C1:C10)
  5. COUNT โ€“ Counts cells with numeric values.
    =COUNT(A1:A100)
  6. COUNTA โ€“ Counts non-empty cells.
    =COUNTA(A1:A100)
  7. ROUND โ€“ Rounds a number to a specified number of digits.
    =ROUND(A1, 2)
  8. ROUNDUP โ€“ Always rounds up.
    =ROUNDUP(A1, 0)
  9. ROUNDDOWN โ€“ Always rounds down.
    =ROUNDDOWN(A1, 0)
  10. ABS โ€“ Returns the absolute value of a number.
    =ABS(A1)

๐Ÿ”น Text Formulas

  1. CONCATENATE (or CONCAT) โ€“ Joins text strings together.
    =CONCAT(A1, ” “, B1)
  2. TEXTJOIN โ€“ Joins text with a delimiter.
    =TEXTJOIN(“, “, TRUE, A1:A5)
  3. LEFT โ€“ Extracts characters from the left side of a string.
    =LEFT(A1, 3)
  4. RIGHT โ€“ Extracts characters from the right side.
    =RIGHT(A1, 4)
  5. MID โ€“ Extracts text from the middle of a string.
    =MID(A1, 2, 5)
  6. LEN โ€“ Counts the number of characters in a cell.
    =LEN(A1)
  7. TRIM โ€“ Removes extra spaces.
    =TRIM(A1)
  8. UPPER โ€“ Converts text to uppercase.
    =UPPER(A1)
  9. LOWER โ€“ Converts text to lowercase.
    =LOWER(A1)
  10. PROPER โ€“ Capitalizes the first letter of each word.
    =PROPER(A1)

๐Ÿ”น Logical Formulas

  1. IF โ€“ Returns one value if true, another if false.
    =IF(A1>100, “High”, “Low”)
  2. IFS โ€“ Tests multiple conditions.
    =IFS(A1>90,”A”, A1>80,”B”, A1>70,”C”)
  3. AND โ€“ Tests if all conditions are TRUE.
    =AND(A1>50, B1<100)
  4. OR โ€“ Tests if any condition is TRUE.
    =OR(A1>50, B1<100)
  5. NOT โ€“ Reverses a logical value.
    =NOT(A1>10)
  6. IFERROR โ€“ Returns a value if an error occurs.
    =IFERROR(A1/B1, “Error”)

๐Ÿ”น Lookup & Reference Formulas

  1. VLOOKUP โ€“ Searches vertically in a range.
    =VLOOKUP(A1, B1:D10, 3, FALSE)
  2. HLOOKUP โ€“ Searches horizontally.
    =HLOOKUP(A1, A2:F3, 2, FALSE)
  3. INDEX โ€“ Returns a value from a specific row and column.
    =INDEX(A1:C10, 2, 3)
  4. MATCH โ€“ Returns the position of a value in a range.
    =MATCH(“Apple”, A1:A10, 0)
  5. XLOOKUP โ€“ A modern replacement for VLOOKUP/HLOOKUP.
    =XLOOKUP(A1, B1:B10, C1:C10, “Not Found”)
  6. OFFSET โ€“ Returns a reference offset from a starting cell.
    =OFFSET(A1, 2, 3)
  7. CHOOSE โ€“ Picks a value from a list based on an index.
    =CHOOSE(2, “Red”, “Blue”, “Green”)

๐Ÿ”น Date & Time Formulas

  1. TODAY โ€“ Returns the current date.
    =TODAY()
  2. NOW โ€“ Returns the current date and time.
    =NOW()
  3. DAY โ€“ Extracts the day from a date.
    =DAY(A1)
  4. MONTH โ€“ Extracts the month.
    =MONTH(A1)
  5. YEAR โ€“ Extracts the year.
    =YEAR(A1)
  6. DATEDIF โ€“ Calculates the difference between two dates.
    =DATEDIF(A1, B1, “Y”)
  7. EDATE โ€“ Returns a date a number of months before or after a date.
    =EDATE(A1, 6)

๐Ÿ”น Financial Formulas

  1. PMT โ€“ Calculates loan payments.
    =PMT(rate, nper, pv)
  2. FV โ€“ Calculates future value of an investment.
    =FV(rate, nper, pmt, pv)
  3. NPV โ€“ Calculates net present value.
    =NPV(rate, values)
  4. IRR โ€“ Returns the internal rate of return.
    =IRR(A1:A10)

๐Ÿ”น Statistical & Math Formulas

  1. RANK โ€“ Ranks a number in a list.
    =RANK(A1, A1:A10)
  2. MEDIAN โ€“ Finds the middle value.
    =MEDIAN(A1:A10)
  3. MODE โ€“ Finds the most frequent value.
    =MODE(A1:A10)
  4. STDEV โ€“ Calculates standard deviation.
    =STDEV(A1:A10)
  5. VAR โ€“ Calculates variance.
    =VAR(A1:A10)
  6. SUBTOTAL โ€“ Performs calculations on filtered data.
    =SUBTOTAL(9, A1:A10) (9 = SUM, 1 = AVERAGE, etc.)

๐Ÿ’ก Bonus Tips

  • Use Ctrl + ` (backtick) to toggle between formulas and values.
  • Combine formulas for powerful automation (e.g., IFERROR(VLOOKUP(…))).
  • Use named ranges to make formulas easier to read.

๐Ÿš€ Final Thoughts

Mastering Excel formulas isnโ€™t just about memorizing functions โ€” itโ€™s about understanding how to combine them to solve real-world problems efficiently. Start with the basics, practice regularly, and soon youโ€™ll be automating reports and dashboards like a pro.

๐Ÿ”น Excel Statistical &#038; Math Formulas for Beginners (With Easy Examples)

MS Excel Formula from MS office Website

10 Comments

Leave a Reply

Your email address will not be published. Required fields are marked *