
What Are the Most Commonly Used Excel Formulas and Their Functions?
Most people treat Excel like a very expensive calculator. They type numbers in, they SUM them, they feel good about themselves. Then someone asks for a report and they spend four hours copy-pasting things they could have done in four minutes with the right formula. What are the most commonly used Excel formulas and their functions? It's a fair question — and honestly, the answer is shorter than most Excel training courses would like you to believe. You don't need 400 formulas. You need about ten. Maybe fifteen if you're feeling ambitious.
Frequently Asked Questions
SUM is the most commonly used Excel formula by a wide margin. It adds up a range of numbers instantly. After that, IF, VLOOKUP, and COUNTIF show up constantly in real-world spreadsheets. If you only learn three formulas, make it SUM, IF, and VLOOKUP — you'll handle roughly 80% of what most workplaces throw at you.
The IF formula checks whether a condition is true or false, then returns one value for true and another for false. For example, =IF(A1>100,"Over budget","Fine") checks if a number exceeds 100 and labels it accordingly. It's the closest Excel gets to making a decision for you — which, honestly, is more than most meetings achieve.
VLOOKUP searches for a value in the first column of a table and returns something from a column to the right. Use it when you need to pull matching data from a separate list — like finding a price from a product code. It's not perfect, but it's been solving that problem since Excel was young and had more hair.
Yes, XLOOKUP is better than VLOOKUP in almost every way. It searches in any direction, handles missing values more cleanly, and doesn't break when you insert columns. If your version of Excel supports it (Microsoft 365 and Excel 2021 onwards), use XLOOKUP and don't look back. VLOOKUP had a good run though — respect the veteran.
COUNTIF counts the number of cells in a range that meet a specific condition. For example, =COUNTIF(A1:A100,"Yes") counts every cell containing the word Yes. It's brilliant for quick tallies — how many orders are over £500, how many entries say Pending, that kind of thing. Simple formula, surprisingly powerful in practice.
COUNT only counts cells that contain numbers. COUNTA counts any cell that isn't empty — numbers, text, dates, the lot. If your data is a mix of text and numbers and you want a headcount, COUNTA is your formula. COUNT will just quietly ignore anything that isn't a number and give you a suspiciously low result.
CONCATENATE joins text from multiple cells into one. So =CONCATENATE(A1," ",B1) might turn "John" and "Smith" into "John Smith". These days Excel prefers the ampersand shorthand or the CONCAT function, but CONCATENATE still works fine. It's basically the duct tape of Excel — not glamorous, but it holds things together when you need it.
Use INDEX MATCH when you need to search a column that isn't the first one in your table, or when you want to look left instead of right. VLOOKUP can only look rightward, which is a genuine limitation. INDEX MATCH is more flexible, doesn't break when columns move, and once you get your head around it, you'll wonder why you waited.