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

Data Analysis

  • How To Insert and Customize Sparklines in Excel
  • Excel Pie Chart
  • How to do a t-Test in Excel?
  • Excel Bar Chart
  • How to Create Thermometer Chart in Excel

References

  • INDEX function: Description, Usage, Syntax, Examples and Explanation
  • Find Closest Match in Excel Using INDEX, MATCH, ABS and MIN functions
  • How to get last row in numeric data in Excel
  • Approximate match with multiple criteria in Excel
  • How to get first column number in range in Excel

Data Validations

  • How To Create Drop-down List in Excel
  • Data validation must not exist in list
  • Excel Data validation don’t exceed total
  • Excel Data validation only dates between
  • Excel Data validation date in next 30 days

Sum if equal to either x or y in Excel

by

This tutorial shows how to Sum if equal to either x or y in Excel using the example below;

In the example, we are summing all sales from either the West OR North region.

Explanation

If you need to sum numbers based on other cells being equal to either one value or another (either x or y), you can use the SUMIF function.

The formula in cell H6 is:

=SUMIF(region,"West",amount)+SUMIF(region,"North",amount)

Where region is a named range for C5:C30 and amount is a named range for E5:E30.

Worked Example:   3D SUMIF for multiple worksheets in Excel

Each instance of SUMIF provides a subtotal, one for sales in the West, one for sales in the North. The formula simply adds these two results together.

SUMIF with an array constant

A more elegant solution is to give the SUMIF function more than one value for the criteria, using an array constant. To do this, construct a normal SUMIF, but package the criteria in array syntax — curly braces, with individual items separated by commas.  Finally, wrap the entire SUMIF function in the SUM function. This is necessary because SUMIF will return one result for each item in the criteria array and these results need to be added together:

Worked Example:   SUMIF function: Description, Usage, Syntax, Examples and Explanation

The formula in cell H7 is:

=SUM(SUMIF(region,{"West","North"},amount))

Criteria as reference

If you want to supply criteria as a range (a reference), you’ll need to enter as an array formula with control + shift + enter:

{=SUM(SUMIF(region,criteria,amount))}

where criteria is a range like A1:A2.

Worked Example:   Sum if cells are not equal to in Excel

SUMPRODUCT alternative

You can also use SUMPRODUCT to sum cells with OR logic. The formula in cell H8 is:

=SUMPRODUCT(amount *((region="West") + (region="North")))

This could also be written as:

=SUMPRODUCT(amount*(region={"West","North"}))

SUMPRODUCT is not as fast as SUMIF, but the speed difference is not noticeable with smaller data sets.

Post navigation

Previous Post:

44 Practical Excel IF function Examples

Next Post:

Large with criteria 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
  • Extract multiple matches into separate rows in Excel
  • Excel If, Nested If, And/Or Criteria Examples
  • OR function: Description, Usage, Syntax, Examples and Explanation
  • Not Equal To ‘<>‘ operator in Excel

Date Time

  • WORKDAY.INTL function: Description, Usage, Syntax, Examples and Explanation
  • Extract date from a date and time in Excel
  • DATEVALUE function: Description, Usage, Syntax, Examples and Explanation
  • Count dates in current month in Excel
  • How to calculate nth day of year in Excel

Grouping

  • Group times into 3 hour buckets in Excel
  • If cell contains one of many things in Excel
  • Map text to numbers in Excel
  • Calculate conditional mode with criteria in Excel
  • Group numbers with VLOOKUP in Excel

General

  • Freeze and Unfreeze Panes in Excel
  • How to get Excel workbook path only
  • Print Excel Sheet In Landscape Or Portrait
  • How to calculate percent change in Excel
  • How to generate random date between two dates in Excel
© 2023 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning