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

Data Analysis

  • Example of COUNTIFS with variable table column in Excel
  • How to combine 2 or more chart types in a single chart in Excel
  • Move chart to a separate worksheet in Excel
  • How To Sort One Column or Multiple Columns in Excel
  • Conditional Formatting New Rule with Formulas in Excel

References

  • Find closest match in Excel
  • Create hyperlink with VLOOKUP in Excel
  • Get nth match with INDEX / MATCH in Excel
  • How to use Excel VLOOKUP Function
  • Extract all partial matches in Excel

Data Validations

  • Excel Data validation with conditional list
  • Excel Data validation date in next 30 days
  • Excel Data validation allow weekday only
  • Excel Data validation no punctuation
  • Excel Data validation must not contain

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.

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:

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.

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:

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 IFS function in Excel
  • IF with wildcards in Excel
  • How to return blank in place of #DIV/0! error in Excel
  • How to use Excel XOR Function
  • Check multiple cells are equal in Excel

Date Time

  • DATE function: Description, Usage, Syntax, Examples and Explanation
  • How to get number of days, weeks, months or years between two dates in Excel
  • Pad week numbers with zeros in Excel
  • TIMEVALUE function: Description, Usage, Syntax, Examples and Explanation
  • How to calculate next anniversary date or birthday in Excel

Grouping

  • Group numbers at uneven intervals in Excel
  • Calculate conditional mode with criteria in Excel
  • Running count group by n size in Excel
  • Group times into unequal buckets in Excel
  • How to randomly assign data to groups in Excel

General

  • How to password protect excel sheet?
  • Check if multiple cells have same value in Excel
  • How to test a range for numbers in Excel
  • How to count total number of cells in a rectangular range in Excel
  • AutoRecover file that was never saved in Excel
© 2026 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning