Skip to content
Free Excel Tutorials
  • Home
  • Excel For Beginners
  • Excel Intermediate
  • Advanced Excel For Experts

Data Analysis

  • How to Sort by Color in Excel
  • How To Sort One Column or Multiple Columns in Excel
  • How to Use Solver Tool in Excel
  • Get column name from index in Excel Table
  • Conditional Formatting New Rule with Formulas in Excel

References

  • MATCH function: Description, Usage, Syntax, Examples and Explanation
  • Count rows with at least n matching values
  • Two-column Lookup in Excel
  • How to use Excel ROW Function
  • How to get address of named range in Excel

Data Validations

  • Excel Data validation must not contain
  • Data validation must not exist in list
  • Excel Data validation no punctuation
  • Excel Data validation don’t exceed total
  • Excel Data validation only dates between

Sum formulas only in Excel

by

This tutorial shows how to Sum formulas only in Excel using the example below;

Formula

=SUMPRODUCT(range*ISFORMULA(range))

Explanation

To sum results from formulas only, you can use the SUMPRODUCT and ISFORMULA functions. In the example shown, the formula in F6 is:

=SUMPRODUCT(sales*ISFORMULA(sales))

where “sales” is the named range C5:C13, values in C5:C9 are hardcoded, and values in C10:C13 are generated with formulas.

How this formula works

This formula uses boolean logic to “filter” the numbers in column C before summing with the SUMPRODUCT function. When the formula is evaluated, values in the named range “sales” are expanded into an array:

{925;1038;1105;1210;1250;1313;1379;1448;1520}

To filter out any values that aren’t created by a formula, the ISFORMULA function is to create an array of TRUE FALSE values like this:

=ISFORMULA(sales)
={FALSE;FALSE;FALSE;FALSE;FALSE;TRUE;TRUE;TRUE;TRUE}

When these two arrays are multiplied by each other, the math operation coerces the TRUE and FALSE values to 1’s and 0’s:

=SUMPRODUCT({925;1038;1105;1210;1250;1313;1379;1448;1520}*{0;0;0;0;0;1;1;1;1})
=SUMPRODUCT({0;0;0;0;0;1313;1379;1448;1520})

The zeros cancel out non-formula results, and SUMPRODUCT sums and returns a final result.

Not formulas

To sum values not generated by a formula, you can add the NOT function like this:

=SUMPRODUCT(sales*NOT(ISFORMULA(sales)))

Here, the NOT function reverses the TRUE FALSE results returned by ISFORMULA function, which filters out any values generated with a formula.

Post navigation

Previous Post:

How to use Excel CHOOSE Function

Next Post:

Customize Ribbon In Excel

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Learn Basic Excel

Ribbon
Workbook
Worksheets
Format Cells
Find & Select
Sort & Filter
Templates
Print
Share
Protect
Keyboard Shortcuts

Categories

  • Charts
  • Data Analysis
  • Data Validation
  • Excel Functions
    • Cube Functions
    • Database Functions
    • Date and Time Functions
    • Engineering Functions
    • Financial Functions
    • Information Functions
    • Logical Functions
    • Lookup and Reference Functions
    • Math and Trig Functions
    • Statistical Functions
    • Text Functions
    • Web Functions
  • Excel VBA
  • Excel Video Tutorials
  • Formatting
  • Grouping
  • Others

Logical Functions

  • How to use Excel XOR Function
  • IFERROR function: Description, Usage, Syntax, Examples and Explanation
  • IFS function: Description, Usage, Syntax, Examples and Explanation
  • Invoice status with nested if in Excel
  • Excel If, Nested If, And/Or Criteria Examples

Date Time

  • Convert time to time zone in Excel
  • Get work hours between dates custom schedule in Excel
  • How to calculate workdays per month in Excel
  • How to calculate months between dates in Excel
  • SECOND function: Description, Usage, Syntax, Examples and Explanation

Grouping

  • How to randomly assign data to groups in Excel
  • Running count group by n size in Excel
  • Group arbitrary text values in Excel
  • If cell contains one of many things in Excel
  • Map inputs to arbitrary values in Excel

General

  • How to Delete Cells, Row and Rows in Excel
  • Currency vs Accounting Format in Excel
  • Select, Insert, Rename, Move, Delete Worksheets in Excel
  • Count cells that do not contain many strings in Excel
  • How to fill cell ranges with random number from fixed set of options in Excel
© 2025 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning