
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Exclude Cells in a Column from SUM in Excel
Excel is a powerful tool that offers a variety of functions for data manipulation and analysis. To exclude specific cells in a column from a sum in Excel, you can use the SUM function along with the subtraction operator (?) to exclude those cells.
Let us see a simple process to know how to exclude cells in a column from sum in Excel.
Step 1
Consider an Excel sheet where you have a list of sentences as shown in the below image.
Now, first click on an empty cell and enter the formula as =SUM(A2:A9) and click enter to get the Sum result. In the formula, (A2:A9) is range.
Empty cell > Formula > Enter
Step 2
Type the following formula, excluding the cells you want to exclude:
=SUM(range) - SUM(excluded_range)
Replace "range" with the range of cells you want to sum, and "excluded_range" with the range of cells you want to exclude from the sum.
For example, if you want to sum cells A1 to A7 but exclude cells A2 and A6, the formula would be:
=SUM(A2:A7) - SUM(A2,A6)
Press Enter to calculate the sum. The result will be the sum of the specified range minus the sum of the excluded cells.
Empty cell > Formula > Enter
By following these steps, you can exclude specific cells from the sum calculation in Excel. Make sure to adjust the ranges and excluded cells according to your specific worksheet setup.
Conclusion
To exclude cells in a column from the sum in Excel, you can use the formula =SUM(range) ? SUM(excluded_range). Replace "range" with the range of cells you want to sum, and "excluded_range" with the range of cells you want to exclude from the sum. Subtracting the sum of the excluded cells from the sum of the desired range will give you the desired result. Enter the formula in the cell where you want the sum to appear, and press Enter to calculate the sum. This method allows you to exclude specific cells from the sum calculation in Excel.