
No matter what industry you’re in — finance, marketing, operations, or even creative roles — Excel remains one of the most essential workplace tools. Yet, most professionals barely scratch the surface of what Excel can truly do. Beyond simple data entry, Excel is a powerhouse of automation, logic, and analysis — and mastering a few key formulas can transform the way you work every single day.
Let’s explore five Excel formulas that can make you look like the smartest person in the room.
VLOOKUP (Vertical Lookup) is every Excel user’s best friend. It helps you find specific information in large datasets by “looking up” a value in one column and returning the matching value from another.
Example:
You have an employee database and want to find the department name for a specific Employee ID.
=VLOOKUP(A2, Sheet2!A:B, 2, FALSE)
Here, Excel searches for the Employee ID in column A and returns the matching department from column B.
Pro Tip:
VLOOKUP works only from left to right, so ensure your lookup column is the first one in your range.
VLOOKUP is great, but INDEX-MATCH is even better. It’s faster, more flexible, and works in both directions (left-to-right and right-to-left).
Example:
=INDEX(B2:B10, MATCH(“John”, A2:A10, 0))
This formula finds “John” in column A and returns the corresponding value from column B.
Why it’s better:
The IF formula lets Excel think logically. It checks a condition and returns one value if it’s true and another if it’s false.
Example:
=IF(B2>=50, “Pass”, “Fail”)
If the value in cell B2 is greater than or equal to 50, the result will be “Pass”; otherwise, “Fail.”
You can even nest multiple IFs for more complex conditions — perfect for grading, categorization, or performance evaluation.
Ever wanted to calculate the total sales for a specific region, product, or date range? That’s where SUMIFS shines.
Example:
=SUMIFS(C2:C100, A2:A100, “North”, B2:B100, “Product A”)
This adds up the sales (column C) for “Product A” in the “North” region. You can add as many criteria as you want.
Messy data is every professional’s nightmare. TEXT functions like LEFT, RIGHT, MID, and CONCATENATE help you extract and format text easily.
Example:
Extract the first 3 letters of a product code:
=LEFT(A2, 3)
Combine first and last names:
=CONCATENATE(B2, ” “, C2)
These formulas might seem simple, but together they can completely change your workflow. They save time, reduce manual effort, and make your reports and dashboards more dynamic.
If you’ve ever felt limited by your Excel skills, it’s not your fault — Excel has hundreds of hidden features that most people never explore.
Want to master Excel from the ground up?
Join our Data Skills Program at Uttam Education, where you’ll learn Excel, SQL, and Power BI hands-on through real-world projects.
Learn this and much more — visit our course page today!