Excel formulas
Excel formulas explained through practical spreadsheet tasks
Excel formulas are instructions that calculate, compare, summarize, clean, or retrieve information from a spreadsheet. The fastest way to understand them is to connect each formula to a clear question.
Why formulas matter
Formulas are what make Excel more than a table. They let a spreadsheet answer questions: What is the total? Which rows qualify? What price matches this code? Which value should be shown if the lookup fails?
Once formulas feel comfortable, you can build reports, clean data, prepare interview tasks, and check work more confidently.
The important shift is from “Which function should I memorize?” to “What question should this cell answer?” That question-first mindset makes formulas easier to choose and easier to debug.
Most useful spreadsheets combine a few formula families: calculations, logical tests, conditional summaries, lookups, text cleanup, date logic, and error handling.
A step-by-step formula roadmap
Begin with the equal sign. Every formula starts by telling Excel to calculate something. Then learn references: single cells, ranges, relative references, and absolute references.
Next, practice summary formulas like SUM and AVERAGE. Add logical formulas such as IF when you need a decision. Then move to criteria-based formulas: COUNTIF, SUMIF, COUNTIFS, and SUMIFS.
After that, learn lookup formulas. XLOOKUP is easier for many modern tasks, while VLOOKUP and INDEX MATCH remain useful in older files and interviews. Round out your skills with text cleanup, rounding, dates, and error handling.
Calculation formulas
Use arithmetic, SUM, AVERAGE, MIN, MAX, ROUND, ROUNDUP, and ROUNDDOWN when the task is numeric. These formulas are common in budgets, grades, invoices, and reporting.
Logical formulas
Use IF, IFS, AND, OR, and IFERROR when the sheet needs to make decisions or handle exceptions. These formulas often produce text labels such as “OK,” “Review,” or “Missing.”
Lookup and summary formulas
Use XLOOKUP, VLOOKUP, INDEX MATCH, SUMIF, SUMIFS, COUNTIF, and COUNTIFS when working with tables. These formulas answer questions across rows, not just within one row.
Practical examples
An Excel formula can be as simple as `=B2*C2` for quantity times price. It can also combine logic and references, such as returning “Review” when a budget difference exceeds a threshold.
Good practice asks you to understand the cells first. The function name is only part of the answer.
For example, `=SUMIFS(H:H,F:F,"North",G:G,"TV")` is not just a formula. It says: add scores or sales in column H only where column F is North and column G is TV. Plain-language interpretation is the fastest way to catch mistakes.
Another example is `=ROUND(B2*C2,2)`. The formula calculates a row total and rounds it to two decimal places. That is different from only formatting the cell to display two decimals, because ROUND changes the stored result.
Recommended practice path
Practice formulas in small clusters: calculations, decisions, summaries, lookups, cleanup, and mixed tasks. Repeat each cluster until you can explain what each argument does.
Calcu helps by turning formulas into active spreadsheet exercises, so you learn Excel by practicing instead of only watching examples.
When studying a formula, ask four questions: What value is the formula returning? Which cells are inputs? What happens if an input changes? What error or unexpected result could appear?
Practical examples
Basic calculation
=B2*C2B2 might hold quantity and C2 might hold unit price. The formula calculates the row total.
Formula with a condition
=IF(ABS(C2-D2)>20,"Escalate","OK")The formula compares two values, measures the gap, and returns a text status.
Recommended Excel functions
Common mistakes
- 01Forgetting that formulas must begin with an equal sign.
- 02Typing numbers directly instead of referencing input cells.
- 03Mixing up ranges when using criteria-based formulas.
- 04Changing displayed formatting and assuming the stored formula result changed.
Practice
Practice this skill with interactive exercises on Calcu.
Use Calcu to practice Excel formulas from basic calculations to lookups and conditional summaries in realistic spreadsheet exercises with instant feedback.
FAQ
What are Excel formulas?
Excel formulas are expressions that calculate or return values from spreadsheet cells, ranges, text, dates, and conditions.
Which formulas should beginners learn?
Beginners should learn SUM, AVERAGE, IF, COUNTIF, SUMIF, SUMIFS, XLOOKUP, ROUND, and basic text formulas.
How do I get better at Excel formulas?
Practice with realistic tasks, explain each argument, and check how the formula behaves when input cells change.