Mastering Excel-Excel Formulas
Mastering Excel: 15 Essential Formulas
Microsoft Excel remains one of the most powerful tools for data management, analysis, and reporting. Whether you are a student, professional, or entrepreneur, mastering Excel formulas can save you time and improve your efficiency. In this post, we’ll explore 15 essential Excel formulas that every user should know in 2026.
1. SUM – Add Numbers Easily
The SUM formula helps you quickly add up a range of numbers.
Example: =SUM(A1:A10) adds all values from A1 to A10.
2. AVERAGE – Find the Mean
AVERAGE calculates the mean of a range of numbers.
Example: =AVERAGE(B1:B10) gives the average of values in B1 through B10.
3. IF – Conditional Logic
IF lets you make decisions based on conditions.
Example: =IF(C1>50,"Pass","Fail") returns “Pass” if C1 is greater than 50, otherwise “Fail.”
4. VLOOKUP – Vertical Lookup
VLOOKUP searches for a value in a table and returns a corresponding value from another column.
Example: =VLOOKUP(101,A2:D100,3,FALSE) looks for 101 in the first column of A2:D100 and returns the value from the third column.
5. HLOOKUP – Horizontal Lookup
HLOOKUP is like VLOOKUP but works horizontally across rows.
Example: =HLOOKUP("Name",A1:Z5,2,FALSE) searches the first row for “Name” and returns the value from row 2.
6. CONCAT / CONCATENATE – Combine Text
Combine text from multiple cells into one.
Example: =CONCAT(A1," ",B1) joins the first and last names with a space.
7. LEN – Count Characters
LEN counts the number of characters in a cell, including spaces.
Example: =LEN(D1)
8. TRIM – Remove Extra Spaces
TRIM removes unnecessary spaces from text.
Example: =TRIM(E1)
9. TODAY / NOW – Current Date and Time
-
=TODAY()returns the current date. -
=NOW()returns the current date and time.
10. COUNT / COUNTA / COUNTIF – Count Cells
-
=COUNT(F1:F10)counts numeric cells. -
=COUNTA(F1:F10)counts non-empty cells. -
=COUNTIF(F1:F10,">50")counts cells greater than 50.
11. ROUND / ROUNDUP / ROUNDDOWN – Round Numbers
-
=ROUND(G1,2)rounds to 2 decimal places. -
=ROUNDUP(G1,0)rounds up to the nearest whole number. -
=ROUNDDOWN(G1,0)rounds down.
12. PMT – Calculate Loan Payments
PMT helps calculate loan repayments.
=PMT(5%/12,60,50000) calculates monthly payment for a 50,000 loan over 60 months at 5% annual interest.13. INDEX / MATCH – Advanced Lookup
More flexible than VLOOKUP, INDEX/MATCH can handle complex tables.
=INDEX(B1:B10,MATCH(101,A1:A10,0)) finds 101 in A1:A10 and returns the corresponding value from B1:B10.14. PROPER / UPPER / LOWER – Text Case Formatting
-
=PROPER(H1)capitalizes the first letter of each word. -
=UPPER(H1)converts text to uppercase. -
=LOWER(H1)converts text to lowercase.
15. TEXT – Format Numbers and Dates
TEXT formats numbers or dates into readable formats.
Example: =TEXT(I1,"dd-mmm-yyyy") converts a date to 01-Apr-2026.
Conclusion
Excel formulas are essential tools for productivity, data analysis, and reporting. Mastering these 15 formulas will make you faster, more efficient, and confident in handling any spreadsheet task.
Comments
Post a Comment
Thank you for visiting our blog! Your feedback is valuable to us. Please keep comments respectful and on topic.