search
HomeSoftware TutorialOffice SoftwareExcel SUM formula to total a column, rows or only visible cells

This tutorial demonstrates how to calculate sums in Excel using the AutoSum feature and custom SUM formulas for columns, rows, and selected ranges. It also covers summing only visible cells, calculating running totals, summing across multiple sheets, and troubleshooting common SUM formula errors.

Need a quick sum? Select the cells and check the status bar in the bottom-right corner of your Excel window:

Excel SUM formula to total a column, rows or only visible cells

For more permanent results, use Excel's SUM function. Even beginners will find it easy to understand.

Key Topics:

  • Basic Arithmetic Sums
  • The SUM Function
  • AutoSum
  • Summing Columns
  • Summing Rows
  • Using the Total Row Feature in Tables
  • Summing Visible Cells Only
  • Calculating Running Totals
  • Summing Across Worksheets
  • Conditional Sums (SUMIF, SUMIFS)
  • Troubleshooting SUM Formula Errors

Basic Arithmetic Sums:

For quick totals of a few cells, use the plus sign ( ): =1 2 3 or =A1 C1 D1

Excel SUM formula to total a column, rows or only visible cells

For larger datasets, the SUM function is more efficient.

The SUM Function:

The SUM function adds values: SUM(number1, [number2], ...) It accepts up to 255 numbers, ranges, or cell references. Examples: =SUM(A1:A100), =SUM(A1, A2, A5), =SUM(1,5,-2), =SUM(A2:A4, A8:A9), =SUM(A2:A6, A9, 10).

Excel SUM formula to total a column, rows or only visible cells

SUM is often used within larger formulas. For example, combining SUM with IF for conditional calculations: =IF(AND($B2"", $D2""), SUM($B2:$D2), "Value missing")

Excel SUM formula to total a column, rows or only visible cells

AutoSum:

For quickly summing a column, row, or adjacent cells, use AutoSum (Home tab > Editing group) or the shortcut Alt =. Excel usually guesses the correct range; adjust if needed.

Excel SUM formula to total a column, rows or only visible cells

Summing Columns:

Use =SUM(B2:B8) to sum cells B2 to B8. To sum an entire column (with a variable number of rows), use =SUM(B:B). Avoid placing this formula within the column being summed to prevent circular references. To exclude header rows, use =SUM(B:B)-SUM(B1:B3) or specify a large range like =SUM(B2:B1048576) (Excel 2007 and later).

Excel SUM formula to total a column, rows or only visible cells Excel SUM formula to total a column, rows or only visible cells Excel SUM formula to total a column, rows or only visible cells

Summing Rows:

Similar to columns, use =SUM(B2:D2) for a row. To sum multiple rows individually, drag down the formula using relative or mixed cell references. For a whole row, use =SUM(2:2). Again, avoid circular references. To exclude columns, subtract the irrelevant columns: =SUM(2:2)-SUM(A2:B2).

Excel SUM formula to total a column, rows or only visible cells Excel SUM formula to total a column, rows or only visible cells Excel SUM formula to total a column, rows or only visible cells

Using the Total Row Feature in Tables:

Excel tables offer a convenient Total Row feature. Convert a range to a table (Ctrl T), then enable the Total Row (Design tab > Table Style Options). Select "Sum" from the dropdown in the Total Row to sum each column. This automatically uses SUBTOTAL, which ignores hidden rows. For sums including hidden rows, use a regular SUM function.

Excel SUM formula to total a column, rows or only visible cells Excel SUM formula to total a column, rows or only visible cells Excel SUM formula to total a column, rows or only visible cells Excel SUM formula to total a column, rows or only visible cells Excel SUM formula to total a column, rows or only visible cells

Summing Visible Cells Only:

Use the SUBTOTAL function: SUBTOTAL(function_num, ref1, [ref2], ...) Use 109 for SUM, ignoring hidden and filtered rows. AutoSum also works with filtered data, automatically inserting SUBTOTAL.

Excel SUM formula to total a column, rows or only visible cells Excel SUM formula to total a column, rows or only visible cells Excel SUM formula to total a column, rows or only visible cells

Calculating Running Totals:

Use a SUM formula with a mix of absolute and relative references: =SUM($B$2:B2). Copy this down to calculate cumulative sums.

Excel SUM formula to total a column, rows or only visible cells

Summing Across Worksheets:

Use 3-D references: =SUM(Jan:Apr!B6) or =SUM(Jan:Apr!B2:B5).

Excel SUM formula to total a column, rows or only visible cells

Conditional Sums:

Use SUMIF for single criteria and SUMIFS for multiple criteria.

Excel SUM formula to total a column, rows or only visible cells Excel SUM formula to total a column, rows or only visible cells

Troubleshooting SUM Formula Errors:

  • #NAME? error: Check for spelling mistakes in the SUM function.
  • Numbers not added: Check for numbers formatted as text. Use the warning triangle to convert to numbers.
  • SUM returns 0: Check for circular references.
  • SUM returns a higher number: Use SUBTOTAL to ignore hidden rows.
  • SUM formula not updating: Ensure Calculation Mode is set to Automatic (Formulas tab > Calculation Options).

Downloadable practice workbook available.

The above is the detailed content of Excel SUM formula to total a column, rows or only visible cells. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Outlook signature: how to make, add and changeOutlook signature: how to make, add and changeApr 22, 2025 am 09:54 AM

This comprehensive guide provides step-by-step instructions for creating and managing professional email signatures in Microsoft Outlook. Learn how to craft compelling signatures with images, clickable links, and more, across all Outlook versions (i

Excel SUM formula to total a column, rows or only visible cellsExcel SUM formula to total a column, rows or only visible cellsApr 22, 2025 am 09:17 AM

This tutorial demonstrates how to calculate sums in Excel using the AutoSum feature and custom SUM formulas for columns, rows, and selected ranges. It also covers summing only visible cells, calculating running totals, summing across multiple sheets

How to AutoSum in ExcelHow to AutoSum in ExcelApr 22, 2025 am 09:05 AM

This concise guide explains Excel's AutoSum feature and its efficient uses. Learn to quickly sum columns, rows, or visible cells, and troubleshoot common AutoSum issues. Excel's SUM function is incredibly popular, prompting Microsoft to include a ded

Excel Switch function – the compact form of nested IF statementExcel Switch function – the compact form of nested IF statementApr 22, 2025 am 09:04 AM

This article introduces the Excel SWITCH function, explaining its syntax and demonstrating its use in simplifying complex nested IF statements. If you've struggled with lengthy nested IF formulas, the SWITCH function offers a significant time-saving

How to do a running total in Excel (Cumulative Sum formula)How to do a running total in Excel (Cumulative Sum formula)Apr 21, 2025 am 11:16 AM

This concise guide demonstrates how to efficiently calculate running totals (cumulative sums) in Excel using a SUM formula with strategically placed absolute and relative cell references. A running total displays the accumulated sum of a dataset as

Excel LEN function: count characters in cellExcel LEN function: count characters in cellApr 21, 2025 am 10:10 AM

Are you looking for an Excel formula to count characters in a cell? If so, then you have certainly landed up on the right page. This short tutorial will teach you how you can use the LEN function to count characters in Excel, with or with

How to count words in Excel - formula examplesHow to count words in Excel - formula examplesApr 21, 2025 am 09:59 AM

This tutorial demonstrates how to count words in Excel using a combination of the LEN, SUBSTITUTE, and TRIM functions. It offers both case-sensitive and case-insensitive formulas for counting total words or specific words/text within a cell or range

Excel: Split string by delimiter or pattern, separate text and numbersExcel: Split string by delimiter or pattern, separate text and numbersApr 21, 2025 am 09:19 AM

This tutorial demonstrates how to efficiently split cells in Excel using both formulas and the advanced "Split Text" feature. Learn to separate text using commas, spaces, or any delimiter, and to split alphanumeric strings into their text

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools