Most Excel frustration comes from the same ten mistakes. Here's how to spot and fix every one.
If you type SUM(A1:A10) without the equals sign, Excel stores it as text. The cell shows the formula text, not the result. Always start with =.
When you copy a formula, relative references (A1) adjust automatically — which is usually what you want. Absolute references ($A$1) stay fixed. If your formula gives wrong results when copied, this is almost always the cause. Use F4 to toggle between reference types.
A number stored as text looks like a number but doesn't behave like one. SUM ignores it, VLOOKUP misses it, sorting puts it in the wrong order. Signs: numbers left-aligned, a green triangle in the corner. Fix: select the cells → Data → Text to Columns → Finish.
A single blank row in a dataset silently breaks everything — pivot tables stop there, VLOOKUP stops there, tables stop there. Keep data contiguous with no blank rows.
Writing =A1*0.2 is risky — if the VAT rate changes, you have to find every formula that uses 0.2 and update it. Instead, put 0.2 in a cell (say B1), label it "VAT Rate", and write =A1*$B$1. Change the rate once and every formula updates.
VLOOKUP has real limitations — it can't look left, it breaks when you insert columns, and it requires a column index number that's easy to get wrong. If you have Excel 365, use XLOOKUP instead.
Plain ranges don't expand. Formulas that reference them miss new rows. Pivot tables built from them don't update. Convert data to a Table (Ctrl+T) and these problems disappear.
Merged cells break sorting, filtering, VLOOKUP, and pivot tables. They look tidy but cause constant problems. Use "Centre Across Selection" instead — it looks identical but doesn't merge.
A circular reference is when a formula refers to its own cell, directly or indirectly. Excel can't calculate it and shows a warning. Check Formulas → Error Checking → Circular References to find the problem cell.
Excel doesn't autosave unless you're on OneDrive or SharePoint. Press Ctrl+S regularly. Or better: File → Options → Save → set AutoRecover to every 5 minutes.
ExcelPro has 880+ hands-on exercises across 9 tracks — type real formulas, get instant feedback.
Start practising free →