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
- SUM โ Adds up a range of numbers.
=SUM(A1:A10) - AVERAGE โ Calculates the average of numbers.
=AVERAGE(B1:B10) - MIN โ Finds the smallest number in a range.
=MIN(C1:C10) - MAX โ Finds the largest number in a range.
=MAX(C1:C10) - COUNT โ Counts cells with numeric values.
=COUNT(A1:A100) - COUNTA โ Counts non-empty cells.
=COUNTA(A1:A100) - ROUND โ Rounds a number to a specified number of digits.
=ROUND(A1, 2) - ROUNDUP โ Always rounds up.
=ROUNDUP(A1, 0) - ROUNDDOWN โ Always rounds down.
=ROUNDDOWN(A1, 0) - ABS โ Returns the absolute value of a number.
=ABS(A1)
๐น Text Formulas
- CONCATENATE (or CONCAT) โ Joins text strings together.
=CONCAT(A1, ” “, B1) - TEXTJOIN โ Joins text with a delimiter.
=TEXTJOIN(“, “, TRUE, A1:A5) - LEFT โ Extracts characters from the left side of a string.
=LEFT(A1, 3) - RIGHT โ Extracts characters from the right side.
=RIGHT(A1, 4) - MID โ Extracts text from the middle of a string.
=MID(A1, 2, 5) - LEN โ Counts the number of characters in a cell.
=LEN(A1) - TRIM โ Removes extra spaces.
=TRIM(A1) - UPPER โ Converts text to uppercase.
=UPPER(A1) - LOWER โ Converts text to lowercase.
=LOWER(A1) - PROPER โ Capitalizes the first letter of each word.
=PROPER(A1)
๐น Logical Formulas
- IF โ Returns one value if true, another if false.
=IF(A1>100, “High”, “Low”) - IFS โ Tests multiple conditions.
=IFS(A1>90,”A”, A1>80,”B”, A1>70,”C”) - AND โ Tests if all conditions are TRUE.
=AND(A1>50, B1<100) - OR โ Tests if any condition is TRUE.
=OR(A1>50, B1<100) - NOT โ Reverses a logical value.
=NOT(A1>10) - IFERROR โ Returns a value if an error occurs.
=IFERROR(A1/B1, “Error”)
๐น Lookup & Reference Formulas
- VLOOKUP โ Searches vertically in a range.
=VLOOKUP(A1, B1:D10, 3, FALSE) - HLOOKUP โ Searches horizontally.
=HLOOKUP(A1, A2:F3, 2, FALSE) - INDEX โ Returns a value from a specific row and column.
=INDEX(A1:C10, 2, 3) - MATCH โ Returns the position of a value in a range.
=MATCH(“Apple”, A1:A10, 0) - XLOOKUP โ A modern replacement for VLOOKUP/HLOOKUP.
=XLOOKUP(A1, B1:B10, C1:C10, “Not Found”) - OFFSET โ Returns a reference offset from a starting cell.
=OFFSET(A1, 2, 3) - CHOOSE โ Picks a value from a list based on an index.
=CHOOSE(2, “Red”, “Blue”, “Green”)
๐น Date & Time Formulas
- TODAY โ Returns the current date.
=TODAY() - NOW โ Returns the current date and time.
=NOW() - DAY โ Extracts the day from a date.
=DAY(A1) - MONTH โ Extracts the month.
=MONTH(A1) - YEAR โ Extracts the year.
=YEAR(A1) - DATEDIF โ Calculates the difference between two dates.
=DATEDIF(A1, B1, “Y”) - EDATE โ Returns a date a number of months before or after a date.
=EDATE(A1, 6)
๐น Financial Formulas
- PMT โ Calculates loan payments.
=PMT(rate, nper, pv) - FV โ Calculates future value of an investment.
=FV(rate, nper, pmt, pv) - NPV โ Calculates net present value.
=NPV(rate, values) - IRR โ Returns the internal rate of return.
=IRR(A1:A10)
๐น Statistical & Math Formulas
- RANK โ Ranks a number in a list.
=RANK(A1, A1:A10) - MEDIAN โ Finds the middle value.
=MEDIAN(A1:A10) - MODE โ Finds the most frequent value.
=MODE(A1:A10) - STDEV โ Calculates standard deviation.
=STDEV(A1:A10) - VAR โ Calculates variance.
=VAR(A1:A10) - 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 & Math Formulas for Beginners (With Easy Examples)


Pingback: ๐น Basic Excel Formulas With Easy Examples - IT + Insight = IT Insight
Definitely Yes
Pingback: ๐น Basic Excel Text Formulas for Beginners (With Easy Examples) - IT + Insight = IT Insite
Pingback: Basic Excel Logical Formulas for Beginners by ITInsite.in
Pingback: ๐น Excel Lookup & Reference Formulas for Beginners (With Easy Examples) - IT + Insight = IT Insite
Pingback: ๐น Excel Date & Time Formulas for Beginners (With Easy Examples) - IT + Insight = IT Insite
Pingback: ๐น Excel Financial Formulas for Beginners (With Easy Examples) - IT + Insight = IT Insite
Pingback: Unlock the Secret Power of Excel: 5 Hidden Functions You Should Be Using Daily
Pingback: ๐น Excel Statistical & Math Formulas for Beginners (With Easy Examples)
Pingback: XLOOKUP function in Excel with a simple explanation and example