Google Sheets: Sum an Entire Column (4 Easy Ways)

Adding or summing values in a spreadsheet is a common process. And with such a versatile application like Google Sheets, we have so many ways we can use to sum an entire column of values in a spreadsheet.

From the built-in Status Bar to direct view results to simple functions that users can customize their calculations, Google Sheets has it all.

But, to keep things simple, and considering common scenarios that most users face, we’ve kept the number of methods to four. Each adding something new catered to their respective situations.

Let’s get started.

4 Ways to Sum an Entire Column in Google Sheets

1. Directly View the Sum of an Entire Column right in the Google Sheets Window

Summing is a fundamental yet simple calculation. We all know how to do it automatically and so does Google Sheets.

For simple calculations like Sum, Google Sheets has the Status Bar at the bottom-right of the window that appears when you select cells in the worksheet.

For example, let’s say we have the following worksheet:

sample worksheet to sum entire column in google sheets

We have a common scenario of Sales values by Month and Year. There is also a split depicting the first and second halves of the year.

Let’s say we want to find the total Sales value of 2020.

All we have to do is click the column number of the Sales column, in this case, it is column C:

click column number to select the entire column in google sheets

And take a look at the bottom-right of the Google Sheets window:

the status bar at the bottom right of the google sheets window shows the sum of selected cells

This is the Status Bar that shows the sum of the entire selected column in Google Sheets.

Google Sheets has preemptively guessed the user’s intentions and added all the numerical values of the selected column to present the sum.

This can work for multiple selected columns:

the status bar can sum multiple selected columns in google sheets

Any selected range of cells in the worksheet:

the status bar can work with any selected range of cells

Or any selected cells, period.

the status bar can sum any selected cell in google sheets

This is a great way to view primary calculations, especially if you don’t want to dedicate cells for this in the worksheet. This can work for other reasons like quick viewing calculations and reluctance to change the format of the existing worksheet.

Clicking on the Status Bar will show you the results of other calculations that Google Sheets has done in the background:

the status bar has other useful calculations of selected cells

Of which the Average (Avg) is another important one in any spreadsheet.

2. To Sum in Google Sheets Directly from the Toolbar

Another useful feature that Google Sheets has for its users is the Functions menu right in the toolbar:

the functions menu can be found at the right end of the toolbar

This menu has a list of all the functions available in the application. While it may sound overwhelming, Google Sheets groups all the common functions like SUM up at the top of the list.

the function menu has all common functions like sum listed at the top in google sheets

While accessing the function may be easy, working with them in this way may be a little clunky. Let’s show you what we mean:

If we want to sum an entire column, we must first select the column and then apply the SUM function, and this time, from the Functions menu.

See what happens when we do this:

problem with applying sum from the functions menu

There are 3 things going on here:

  1. A function must occupy a cell in the worksheet to present the results.
  2. The application of any function with the Functions menu will make Google Sheets automatically set the result location.
  3. The result location is usually an adjacent cell or a part of the selected cells.

With these points in mind, we can understand that the user has no control over where the result will go!

To work with this method, we cannot select the entire column, but select only the range of cells that we actually need:

Select range of cells > Functions > Sum

sum column in google sheets using functions menu

To conclude, this method should only be used when you have a simple arrangement of data.

In the next section, we solve this issue by directly applying the SUM function according to the user’s choice.

3. Use the SUM Function to Sum an Entire Column

Why not take back some control from Google Sheets this time?

We are talking about applying the SUM function ourselves.

If you don’t already know, the SUM function is one of the fundamental functions you’ll learn in Google Sheets.

SUM(value1, [value2, ...])

sum function syntax

The function can take multiple ranges of cells at once to do a single task: Addition.

Here we have a sample dataset containing Location and Customer data. We want to find the total number of customers:

sample worksheet with location and customer data

To sum up the entire Customers column in Google Sheets, simply open the SUM function, =SUM(, and click on the column number to select the entire column range.

selecting the entire column in the sum function of google sheets

Close parentheses and press ENTER.

=SUM(C:C)

sum entire column with the sum function in google sheets

The advantage here above the previous method is that we can set the location of the result ourselves.

Setting the range up like this, C:C, includes all the cells in column C.

The advantage of this is that it makes the formula dynamic to the column. Meaning, every time we enter a new value into the column, it will be added to the total sum:

sum entire column dynamically with the sum function in google sheets animated

But, if you want a limited range of only a few cells in the column, simply update the range in the formula.

=SUM(C2:C11)

limiting the column range for the sum function

This version is much more common.

Extra: Sum Different Ranges from Different Columns in Google Sheets

Recall the SUM function syntax. Using this function, we can sum multiple different cell ranges that don’t always have to be adjacent.

That means, we can do something like finding the total sales of the first and last quarters of the years 2020 and 2021 from the previous worksheet:

=SUM(C3:C5,C13:C15,F3:F5,F13:F15)

adding multiple column ranges to sum in google sheets

Each non-adjacent range is separated by a comma, highlighted in the image above in yellow.

4. Add Column Values with Criteria Using SUMIF or SUMIFS functions

We can’t really call it a sum process in a spreadsheet without adding in a few conditions, can we?

Adding values in Google Sheets is quite easy with the SUMIF function.

SUMIF(range, criterion, [sum_range])

sumif function syntax

The function takes a range of cells upon which a criterion is applied. We can either sum the values in the range or apply a separate “sum range” from where we will get our result.

For example, we have the following worksheet from where we want to find the total number of customers that have gone to a location with a rating of more than 5:

sample worksheet for summing total customers

The formula will be:

=SUMIF(C2:C11,”>5″,D2:D11)

sum column with condition in google sheets with sum function

Where:

  • C2:C11 is the range of values for the Rating column. Here, the “>5” criterion is considered.
  • D2:D11 is the range of the column whose values will be added if they meet the criterion.

Why not add another condition to the mix?

Let’s say we also want to know only the number of customers from the Washington region with a rating higher than 5.

While SUMIF can only have one criterion, the SUMIFS function can take multiple.

SUMIFS(sum_range, criteria_range1, criterion1, [criteria_range2, criterion2, ...])

sumifs function syntax

The formula:

=SUMIFS(D2:D11,C2:C11,">5",B2:B11,"Washington")

sum column with multiple conditions in google sheets with sumifs function

Where:

  • D2:D11 is the range of cells that will be summed. The Customers column.
  • C2:C11,”>5″: Condition set for the Rating column.
  • B2:B11,”Washington”: Condition set for the Location column.

Note: In both cases, SUMIF and SUMIFS, you can remove the bottom row number limitation to make the formula more dynamic and accepting of new values, e.g., D2:D11 to D2:D.

Learn more: How to Perform Conditional Sum in Google Sheets (Easy Guide)

Final Words

That concludes our simple tutorial on how to sum an entire column in Google Sheets.

Each method is best used in specific scenarios and can also depend somewhat on user knowledge. We hope that we’ve been able to clarify these scenarios and you are now well-equipped to use all of these approaches.

Feel free to leave any queries or advice you might have in the comments section below.

Related Articles for Reading

Mehrab Imtiaz

Mehrab Imtiaz

Mehrab Imtiaz is a Technical Writer for officewheel.com specializing in everything Google Sheets. Mehrab has always had a profound passion for writing and with his experience with MS Excel and Google Sheets throughout his career, it seems to be a great match when it comes to dishing out tips and tutorials for all to enjoy.

We will be happy to hear your thoughts

Leave a reply

OfficeWheel
Logo