Home / Blog / Add Up a Column
How-to · 2026

How to Add Up a Column in Excel

Total a column in one click, one keystroke, or one formula — plus how to see the sum without a formula at all, and how to add up only the rows that meet a condition.

By the Quiriz Team · Published July 24, 2026 · 3 min read

The quick answer: click the empty cell below your numbers and press Alt + =, then Enter. That's AutoSum. Here are the other three ways, including totalling only the rows that match a condition.

1. AutoSum (one keystroke)

Click the cell directly below the column, then press Alt + = (or click AutoSum on the Home tab). Excel drops in =SUM() with the range already guessed — check it and press Enter.

2. The SUM function

Type it yourself when you want control: =SUM(A2:A100) for a specific range, or =SUM(A:A) to add the whole column (it ignores text and the header). Put the whole-column version in a different column to avoid a circular reference.

3. No formula at all — the status bar

Just want to peek at the total? Select the cells and look at the status bar at the bottom of the window — it shows Sum, Average and Count of whatever you've selected. Nothing to type, nothing left behind.

4. Add up only what matches — SUMIF

To total a column just for certain rows: =SUMIF(B:B,"West",A:A) adds column A only where column B is "West". For more than one condition, use SUMIFS — covered in our multiple-criteria guide.

Analyze your Excel data with AI

Ask "total revenue where region is West" in plain English and get the number in seconds. Free to start.

Try Quiriz free →

Frequently asked questions

What's the shortcut to sum a column in Excel?
Click the cell below the column and press Alt + = (AutoSum). Excel inserts =SUM() with the range already selected — just press Enter to confirm.
How do I sum an entire column?
Use a full-column reference: =SUM(A:A) adds every number in column A, ignoring text and headers. Put it in a cell outside that column to avoid a circular reference.
How do I see a column total without a formula?
Select the cells and look at the status bar along the bottom of the Excel window — it shows Sum, Average and Count of the selection automatically. Nothing to type.
How do I add up a column only where a condition is met?
Use SUMIF: =SUMIF(B:B,"West",A:A) adds the numbers in column A only on rows where column B equals "West". For several conditions, use SUMIFS.