Written by Allen Wyatt (last updated December 8, 2018)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365
Mandy wonders if there is a way to sum a data range and include in the sum only those cells that contain a formula. According to Mandy's needs, if a cell contains an explicit value and not a formula, then it should not be included in the sum.
There are many ways you could go about achieving the desired result, but I will focus on only a few of them.
First, if you only need to determine the sum a single time and not have it appear within the worksheet itself, then you can follow these steps:
At this point you can look in the status bar (bottom of the Excel window) and see the sum of the selected cells—those containing formulas.
If you prefer a formula-based approach, one of the key factors here is going to be the version of Excel you are using. Microsoft introduced the ISFORMULA function with the release of Excel 2013, so if you are using that version (or later), determining the sum you want is quite easy. Just use this formula:
=SUMPRODUCT(A1:A5,--ISFORMULA(A1:A5))
This formula assumes that the data range you want to sum is A1:A5. The "double minus" sign before the ISFORMULA function is used to convert TRUE and FALSE values (as returned by ISFORMULA) to either 1 or 0.
If you prefer to use an array formula, you could use the following formula:
=SUM(IF(ISFORMULA(A1:A6),A1:A6))
Just remember to enter using Ctrl+Shift+Enter and you'll get the proper result.
If you are using a version of Excel older than Excel 2010, then these formulas won't work. Instead, you'll need to rely on a user-defined function to do the trick:
Function SumFormulas(ByVal r As Range) Dim c As Range Dim s As Double s = 0 For Each c In r.Cells If c.HasFormula And IsNumeric(c) Then s = s + c.Value End If Next c SumFormulas = s End Function
Note that the code checks to make sure that the cell contains a formula (using the HasFormula property) and checks to make sure it is numeric (using the IsNumeric function). Both are necessary because it is possible to have a text-based formula in a cell, and you don't want to try to include the results of such a formula in your sum.
In order to use the function, you would simply use the following in a worksheet cell, assuming you want to sum the range A1:C7:
=SumFormulas(A1:C7)
The macro-based approach will also work in versions of Excel beyond Excel 2010, if for some reason you don't want to rely on the ISFORMULA function. (For instance, if you have to ensure compatibility with older versions of Excel.)
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (13595) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365.
Excel Smarts for Beginners! Featuring the friendly and trusted For Dummies style, this popular guide shows beginners how to get up and running with Excel while also helping more experienced users get comfortable with the newest features. Check out Excel 2013 For Dummies today!
Creating math formulas is a particular strong point of Excel. Not all the functions that you may need are built directly ...
Discover MoreFormulas are made up of operands that separate a series of terms acted upon by the operands. You may want to know, for ...
Discover MoreExcel allows you to easily combine text together. Interestingly, it provides two ways you can perform such combinations. ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2018-12-10 11:10:39
Roy
Yeah, hard to see a need for the IF().
Perhaps there is some odd situation in which it would matter? The logic in using it would not really seem to address anything.
Experimenting on seemingly non-applicable ideas shows that if a formula in the range refers to a text item, "horse" perhaps, not using IF() produces an error that IF() seems to avoid. However, IFERROR() (the more logical choice if looking at the error idea) yields a 0 when the same error exists while IF() gives the correct answer.
(Use three cells to reference, containing "horse", "1", and "2" but only reference the first and last, using an actual "2" instead in your "to sum" range. Using IF() yields 2, using IFERROR() yields 0 though using the "--" trick does clear the issue.
I wonder where else one can use IF() (with OR? without its thrid argument?) instead of IFERROR() and be able to avoid the "--" trick, or other tricks, yet achieve same result? Is it limited to array formulas for this, or normal ones? Why would it work so at all?
Lu-u-u-cy Excel! You got some 'splainin' to do!
2018-12-10 03:50:20
Mark
Hi Allen,
I can't work out how to get the formula to work. Where do I paste the macro?
regards,
Mark
2018-12-08 05:28:07
Michael Avidan
Array Formula:
=SUM(ISFORMULA(B1:B6)*B1:B6)
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2023 Sharon Parq Associates, Inc.
Comments