Getting Started with Spreadsheets — No Experience Required
Learn how to set up your first spreadsheet, enter data correctly, and use basic tools you'll come back to again and again.
Read More
Stop doing math by hand. We'll show you the formulas you'll actually use — adding columns, averaging numbers, and finding totals. Clear explanations, real examples.
You've probably stared at a spreadsheet full of numbers and thought, "There's got to be a faster way to do this." There is. Formulas are basically shortcuts that tell your spreadsheet to do the math for you.
Here's the thing: you don't need to understand complex mathematics. Most spreadsheet work uses the same three or four basic formulas over and over. Once you learn those, you'll handle 90% of what people actually need in real life.
We're not talking about anything fancy. We'll stick to formulas that work in Excel, Google Sheets, or whatever you're using. By the end of this guide, you'll know how to add up columns, find averages, count items, and spot the highest or lowest value in your data. That's genuinely powerful stuff.
SUM is the bread and butter. It adds up a column or row of numbers. That's it. No fancy thinking required.
Let's say you've got monthly expenses listed in cells A1 through A12. You want the total. You'd type
=SUM(A1:A12)
in the cell below and boom — it adds them all up automatically.
Here's what makes this actually useful: if you change any number in that range, the total updates instantly. You don't recalculate by hand. Your spreadsheet does it for you.
=SUM(range)
=SUM(A1:A12)
adds cells A1 through A12
Try it with your own numbers. Pick any column, add 5-10 numbers, then use SUM. You'll see the difference immediately.
Learn how to set up your first spreadsheet, enter data correctly, and use basic tools you'll come back to again and again.
Read More
Master the tools that'll make your documents look polished. Covers headings, spacing, fonts, and the little touches that matter.
Read More
It's frustrating when files disappear into your computer. This guide covers folder structure, naming conventions, and backup basics.
Read MoreAVERAGE does exactly what the name suggests. It calculates the middle value of a group of numbers. You'll use this constantly.
Say you track your monthly spending on groceries across 12 months. You want to know your typical monthly spend. AVERAGE gives you that number instantly. Type
=AVERAGE(B1:B12)
and you've got your answer.
The formula ignores empty cells, which is handy. If you have 10 numbers with 2 blank cells, it'll average only the 10 numbers — not count the blanks as zero.
=AVERAGE(range)
=AVERAGE(B1:B12)
finds the average of cells B1 through B12
Digital tools and platforms change regularly — new features appear, interfaces shift, menu locations move around. The core formulas we're covering here (SUM, AVERAGE, COUNT) are stable and won't change. But if you're following along and your screen looks different from what we describe, check the official help in your spreadsheet application or take a moment to explore the menus. Spreadsheets are designed to be learner-friendly once you get the basics down.
COUNT tells you how many cells contain numbers in a range. It's simpler than it sounds and ridiculously useful.
Imagine you've got a list of sales figures and some cells are empty because there were no sales that day. You want to know how many days had sales. COUNT will tell you exactly that — it counts only the cells with numbers, ignoring the blanks.
The formula is
=COUNT(A1:A31)
and it'll count every cell in that range containing a number. If you want to count non-empty cells regardless of what's in them (numbers, text, anything), you'd use COUNTA instead.
=COUNT(range)
=COUNTA(range)
counts any non-empty cell
These two work as a pair. MIN finds the smallest number in a range. MAX finds the largest. You'll use them when you need to spot outliers or track your highest and lowest values.
Type
=MIN(C1:C20)
and it shows the smallest number in that range. Perfect for finding your lowest expense, your smallest sale, or your slowest time.
=MIN(range)
Similarly,
=MAX(C1:C20)
shows the largest value. Great for spotting your best performance, highest income, or biggest purchase. These formulas save you from scanning through dozens of numbers manually.
=MAX(range)
Editorial Team
Written by the hovercart editorial team, focused on practical, accessible guidance for midlife digital learners.
That's genuinely the foundation of spreadsheet work. SUM, AVERAGE, COUNT, MIN, MAX — these five formulas handle the vast majority of what people actually do with spreadsheets. You don't need anything fancy. You don't need to memorize complicated syntax.
Start with one formula. Use it a few times. Get comfortable with how ranges work (the A1:A12 part). Then pick another. By the time you've worked through all five, you'll feel confident with spreadsheets in ways that seemed impossible before.
And here's the best part: once you've got these down, you can learn more advanced formulas if you want. But honestly, many people never need to. These five formulas are genuinely enough for budgets, tracking, analysis, and reporting. That's real power.