
The 7 spreadsheet skills that quietly make you look brilliant at work
Article Summary
AI can write your formulas now — which makes it more important, not less, that you can tell when the formula is wrong. Here are the 7 skills that matter.
A colleague once sent me a spreadsheet to "just double-check." It was a budget the whole team had been working from for three months. Within about ten minutes I found a SUM that stopped one row short of the bottom — so a chunk of money simply wasn't being counted. Nobody had been careless. The sheet just looked tidy enough that everyone trusted it.
That moment is the whole reason this post exists. Spreadsheets are the most-used analytics tool on earth, and almost nobody is taught to use them properly. People pick them up by osmosis, copy a formula from a coworker, and quietly carry a low-grade fear that one wrong click will break everything.
Here's the good news: the gap between "I'm scared of Excel" and "people come to me when the numbers look weird" is smaller than you think. It's about seven skills. None of them are hard. Most of them take an afternoon to learn and a lifetime to benefit from.
"But won't AI just do this now?"
Fair question, and worth answering before we start.
Yes — Copilot in Excel, ChatGPT, and Google's Gemini in Sheets can all write formulas, summarise data, and even build a chart from a plain-English request. That's genuinely useful. I use it.
But notice what just changed. If a tool writes the formula, your job shifts from typing it to judging it. Is =VLOOKUP returning the right column? Did it quietly skip blank rows? Is that "12% growth" comparing the right two periods? The AI will hand you an answer with total confidence whether it's right or wrong — that's the one thing these tools are reliably good at, sounding sure.
The person who understands spreadsheets is now the person who can catch the machine's mistakes. That's a more valuable role than the person who typed faster, not a less valuable one. So the skills below aren't going obsolete. They're becoming the thing you bring that the AI can't: judgement.
1. Clean tables (the boring skill everything else depends on)
This is the one nobody wants to hear, so let's get it out of the way: most spreadsheet pain comes from messy data, not missing skills.
A clean table follows a few unglamorous rules:
- One row = one record. One column = one thing. Don't cram "John Smith — London" into a single cell if you'll ever want to filter by city.
- Headers in the top row, data below, no gaps. No title banners, no blank "spacer" rows, no merged cells (merged cells are where dreams of a working pivot table go to die).
- One value per cell. No "approx 50–60", no "150 (estimate)". Put the note in a separate column.
- Be consistent. "UK", "U.K.", "United Kingdom", and "uk " (with a trailing space) are four different things to a computer.
If your data is shaped like a proper table, every other skill in this list gets dramatically easier. If it isn't, you'll fight the tool forever. This is the unsexy foundation, and it's the single highest-return habit on the page.
2. The five functions that actually carry the load
People assume Excel mastery means memorising hundreds of functions. It doesn't. A small handful does most of the real work:
| Function | What it's for | Plain-English version |
|---|---|---|
SUM / AVERAGE |
Totals and means | "Add these up" / "what's typical" |
IF |
Make a decision | "If this is true, do X, otherwise Y" |
COUNTIF / SUMIF |
Count or total with a condition | "How many sales over £500?" |
XLOOKUP (or VLOOKUP) |
Pull matching info from another table | "Find this ID and grab its price" |
TEXT / & |
Format and join text | Stitch "Q1" and "2026" into "Q1 2026" |
That's it. Get genuinely comfortable with these five and you can handle the overwhelming majority of everyday tasks. Everything fancier is a variation on these ideas.
A quick COUNTIF example, because seeing it once makes it click:
=COUNTIF(C2:C500, ">1000")This counts how many values in C2:C500 are above 1000. Swap the condition for "London" and it counts matching text instead. One small function, endless uses.
3. Lookups, done so they don't silently lie
The lookup is where a spreadsheet stops being a list and starts being a database — you connect two tables by a shared key. It's also where the most dangerous quiet errors live.
The old workhorse, VLOOKUP, has a famous trap: by default it does an approximate match and will cheerfully return the wrong row. The fix is to always force an exact match:
=VLOOKUP(A2, Prices!A:C, 3, FALSE)That FALSE at the end is not optional. It's the difference between "find exactly this" and "find roughly this and hope." Leaving it off is one of the most common ways a spreadsheet looks fine and is wrong.
If your version has it, XLOOKUP is friendlier — it matches exactly by default, looks left or right, and lets you set a clear "if not found" message instead of an ugly #N/A:
=XLOOKUP(A2, Prices[ID], Prices[Price], "Not found")The takeaway: a lookup that returns the wrong answer looks identical to one that returns the right answer. Always test it against a row you know the answer to.
4. Pivot tables (the skill that feels like a superpower)
If I could give every office worker exactly one new skill, it would be this. A pivot table summarises thousands of rows into a clean answer in about four clicks — total sales by region, average response time by team, count of orders by month — with zero formulas.
The mental model: you drag fields into four boxes. Rows (what to group by), Columns (an optional second grouping), Values (the number to crunch), and Filters (what to include). Want to see it a different way? Drag the fields around. The table rebuilds instantly.
The first time someone collapses a 10,000-row export into a tidy regional summary in front of their boss, something shifts in how they're seen at work. It genuinely looks like magic. It is genuinely four clicks. (It also depends entirely on skill #1 — pivot tables hate merged cells and blank rows, which is why we started there.)
5. Conditional logic that reads like a sentence
IF is how a spreadsheet starts making decisions for you instead of just storing numbers:
=IF(B2 > 30, "Overdue", "On time")Read it out loud: if the value in B2 is over 30, say "Overdue", otherwise say "On time." That's it. Once you can write one IF, you can write a flag for almost any rule your business cares about — over budget, low stock, missed deadline, VIP customer.
A word of caution from experience: it's tempting to nest IFs ten deep into one monstrous formula. Resist. If your logic is getting complicated, break it across a few helper columns. A formula you can't read in six months is a bug waiting to happen — and "future you" is the person who'll be debugging it at 5pm on a Friday.
6. Charts that tell the truth
A chart is an argument. Made well, it makes a real pattern obvious in a second. Made carelessly — or manipulatively — it lies.
A few honest-charting habits worth keeping:
- Start bar charts at zero. Chopping the bottom off the axis turns a 2% difference into a dramatic-looking cliff. That's not emphasis, it's distortion — and a sharp audience will catch it and stop trusting your numbers.
- Match the chart to the question. Comparing categories? Bar chart. Showing change over time? Line chart. Pie charts are fine for "parts of a whole" with a few slices, and a menace with twenty.
- Label directly, ditch the clutter. Drop the heavy gridlines, the 3-D effects, the rainbow palette. The clearest chart is usually the plainest one.
When AI builds a chart for you, these are exactly the judgement calls it gets wrong. It'll happily hand you a truncated axis or a fifteen-slice pie. You're the editor.
7. Structure: named ranges and tables
This last one separates "a sheet that works today" from "a sheet that still works next quarter." Two habits:
Format your data as a Table (Ctrl+T). Now it has a real name, it expands automatically when you add rows, and your formulas can say Sales[Revenue] instead of the cryptic D2:D5000.
Name your key cells. A tax-rate cell called VAT_Rate makes =Price*VAT_Rate instantly readable, and means you change the rate in one place instead of hunting through forty formulas.
Structure is a gift to your future self and to whoever inherits the file. It's the difference between a spreadsheet people trust and one they quietly rebuild from scratch because they can't follow it.
The mistake that breaks everyone's sheet
If you take one thing from this whole post: the problem is almost never the formula. It's the data underneath it.
Trailing spaces. Numbers stored as text. A stray merged cell. A blank row that quietly stops a SUM (yes — the budget from the opening). Dates that are secretly text and won't sort. None of these throw an error. The sheet just gives you a confident, wrong answer, and a confident wrong answer is far more dangerous than an obvious crash.
So before you trust any spreadsheet — yours or one handed to you — spend two minutes on the data itself. Sort each column and eyeball the top and bottom. Check the totals against a rough mental estimate. Confirm a couple of lookups against rows you already know. That habit catches more real-world errors than any single function ever will.
When you've outgrown the spreadsheet
Spreadsheets are brilliant, and they have a ceiling. You'll feel it as a specific kind of friction:
- The file gets so big it crawls or crashes.
- You're manually pasting the same monthly report together for the fortieth time.
- Several people edit the same file and overwrite each other.
- You want a live dashboard that updates itself, not a static snapshot.
That's not a sign you failed at Excel. It's a sign you've used it well enough to find its edge — and the next tool is waiting. For reporting and dashboards, that's usually Power BI, which connects straight to your data and refreshes on its own. I walked through that exact jump in building your first Power BI dashboard from an Excel file. When the work is real analysis or automation, the next step is often a little Python.
The honest recap
- Clean tables first — most spreadsheet pain is messy data, not missing skills.
- Five functions (
SUM,IF,COUNTIF/SUMIF,XLOOKUP,TEXT) cover the vast majority of real work. - Force exact matches on lookups, or they'll lie to you quietly.
- Pivot tables turn thousands of rows into an answer in four clicks.
- Charts are arguments — start bars at zero and tell the truth.
- Structure (Tables and named ranges) keeps a sheet working next quarter, not just today.
- And in the AI era, your real edge is judgement — knowing when the confident answer is wrong.
If you'd like a faster path through all of this — or you've hit that ceiling and want to move into Power BI or Python without the false starts — that's exactly the kind of thing I help people with in 1-on-1 sessions. We can start from whatever messy real sheet is currently on your screen. Often that's the best place to begin, because the lesson sticks when it's solving a problem you actually have. You can see how I approach the tools on the Excel and Power BI pages whenever you're curious.
Enjoyed this post? Get the next one in your inbox.
A short, useful email when there's a new tutorial, study guide, or career-prep post on the blog. No spam, unsubscribe anytime.
Written by Ali Jabbary
M.Sc., P.Eng. • Expert Data Scientist & ML Engineer with 10+ years of experience. 500+ students helped worldwide. Specializing in Python, AI/ML, and turning complex problems into simple solutions.


