How to Show the Total Row in Excel

If you just need to show the total row in excel and move on, the boxed answer at the top is all you need. The rest of this page is for when you want to understand why it works in Excel, adapt it to a trickier version, or make it robust enough to hand to a colleague. We keep the opening short on purpose — the depth is here when you want it, not in your way when you don’t.

Exact answer

In Excel: use =SUM(range), for example =SUM(A1:A10), or =SUMIF(range, criteria, sum_range) to add only the rows that match a condition.

ƒxAverage, Median & ModeLive

n = 7 · Sum = 103.00 · Min = 9.00 · Max = 21.00

Average (mean)
14.71

7 values

Median
15.00
Mode
15.00
=AVERAGE(A1:A7) · =MEDIAN() · =MODE.SNGL()
=SUM(A1:A10)
Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

What this does

SUM adds every number in the range you give it, ignoring blanks and text so you do not have to clean the column first. It is the most-used function in any spreadsheet because totals are everywhere. When you only want some of the values, SUMIF (one condition) and SUMIFS (several) add just the rows that meet your criteria. Keep the inputs visible and clearly labelled and the whole thing stays auditable — anyone who opens the file later, including you, can see at a glance exactly what feeds the result and change one assumption without hunting through the formula. Treat “show the total row in excel” as a small repeatable workflow rather than a one-off click you hope to remember next time. Use a small test block before the live file, so any surprise in the affected rows shows up while it is still harmless. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. That turns a layout choice that keeps the sheet readable and sortable into a method you can reuse, explain, and defend when the workbook leaves your screen.

A worked example

To total a column of sales in A1:A10, type =SUM(A1:A10). To total only the "North" region, =SUMIF(B1:B10,"North",A1:A10) adds the A-values whose B-cell says North. The AutoSum button (Alt+= on Windows) writes the SUM for you and guesses the range — handy, but always check the highlighted range is right. Every dashboard, invoice and budget ends in a total, which is why SUM — and its conditional cousins SUMIF and SUMIFS — is the first function worth mastering. Get it right and the rest of the sheet builds on solid ground. A practical tip before you scale it up: build it once on a small block of test data, confirm the number against the tool on this page, and only then point it at your real sheet. That one habit catches almost every mistake while it is still cheap to fix, long before a wrong figure reaches a report or a colleague.

In Google Sheets

Everything above works in Google Sheets too. Excel and Sheets share the formula syntax used here; only the surrounding menus are arranged differently. That portability is deliberate — learn it once and it follows you between the two tools and across Windows and Mac. The aim was to get you unstuck fast and leave you a little more capable than a copy-paste would. The answer is at the top, the tool proves it, and the detail above shows why it holds — so the next time a colleague asks, you can answer without reaching for search. The short version of “show the total row in excel”: the answer is at the top of this page, the tool proves it on your own numbers, and the sections above explain why it holds so the next variation does not stump you. Excel rewards people who reference cells instead of typing values and who keep inputs separate from formulas, because that is what makes a result you can audit months later. Build it once, deliberately, with the live tool as a check, and you convert a one-off lookup into a reusable skill — which is the whole point of learning the why and not just the what.

Common mistakes

  • Letting AutoSum guess a range that misses the top or bottom row — always check the outline.
  • Summing a column that includes its own total cell, creating a circular reference.
  • Expecting SUM to add text numbers — values stored as text are skipped silently.
  • Using SUMIF when you need several conditions; reach for SUMIFS instead.

Frequently asked questions

SUM vs AutoSum?

AutoSum is just a button that writes a SUM formula for the range it guesses. The formula is identical; AutoSum only saves typing.

How do I sum with a condition?

Use SUMIF for one condition (=SUMIF(range, ">100")) or SUMIFS for several criteria across different columns.

Why does SUM ignore some cells?

SUM only adds numbers; cells holding text, including numbers stored as text, are skipped. Convert them with VALUE or by multiplying by 1.

Other ways people ask this

This guide also answers

  • how to display a total row in excel