How to Use the Excel SUMPRODUCT Function (7 Examples)

Excel SUMPRODUCT Function – Overview

The SUMPRODUCT function is a powerful tool in Excel that allows you to calculate the sum of products of corresponding values from one or more arrays. Here are the key points:

Basic Use:

    • To find the sum of products, multiply corresponding numbers in different ranges and add up the results.
    • For instance, if you have data like {2, 3, 4} in one list and {5, 10, 20} in another, applying SUMPRODUCT yields 120 (because (2 \times 5 + 3 \times 10 + 4 \times 20 = 120))

Syntax:

SUMPRODUCT function syntax

The Syntax of the SUMPRODUCT function is:

=SUMPRODUCT(array1,[array2],[array3],…)

You can provide one or more arrays as arguments.

Argument:

Argument Required or Optional Value
array 1 Required  The first array of numbers. 
[array2] Optional  The second array of numbers. 
[array3]  Optional The third array of numbers. 

Return Value:

It returns the sum of the products of the corresponding values from all the arrays.

Note:

  • All arrays must have the same dimensions; otherwise, Excel displays a #VALUE! error.
  • If any cell within an array contains non-numeric text, SUMPRODUCT treats it as 0.
  • If an array contains Boolean values (TRUE and FALSE), you can convert it to an array of numbers using “–”. For example, –{TRUE, FALSE, TRUE, TRUE, FALSE} becomes {1, 0, 1, 1, 0}.

Dataset Overview

Say, we have a dataset of student records of Saint Xavier’s school containing 3 columns named Student Name, Marks in Physics, and Marks in Chemistry.

Sample Dataset to Use Excel SUMPRODUCT Function

Now, we need to find the count or total numbers according to different criteria using the SUMPRODUCT function.


Example 1 – Counting Cells with Specific Criteria

Suppose you want to calculate how many students scored 80 or above in Physics. Follow these steps:

  • Click on cell F6.
  • Insert the formula:
=SUMPRODUCT(--(C6:C17>=80))

Formula Breakdown:

  • (C6:C17 >= 80) checks each cell in the range C6:C17. If it’s greater than or equal to 80, it returns TRUE; otherwise, FALSE.
  • –(C6:C17 >= 80) converts TRUE/FALSE to 1/0.
  • The result is 8, representing the number of students who achieved at least 80 in Physics.
  • Press Enter.

Excel SUMPRODUCT Function to Count Cells with Specific Criteria


Example 2 – Counting Cells with Multiple Criteria (AND Type)

Let’s count the total number of students with at least 80 in both Physics and Chemistry:

  • Click on cell F6.
  • Insert the formula:
=SUMPRODUCT(--(C6:C17>=80),--(D6:D17>=80))

Use SUMPRODUCT Function to Count Cells with Multiple Criteria (AND Type)

Formula Breakdown:

  • –(C6:C17 >= 80) gives an array of 1s and 0s (1 for scores >= 80 in Physics).
  • –(D6:D17 >= 80) gives a similar array for Chemistry.
  • Multiplying these arrays yields {0, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 1}.
  • The sum of this array is 5, representing students with at least 80 in both subjects.

Example 3 – Counting Cells with Multiple Criteria (OR Type)

Suppose you want to count the total number of students who scored at least 80 in either Physics or Chemistry (or both). Follow these steps:

  • Click on cell F6.
  • Insert the formula:
=SUMPRODUCT(--(((C6:C17>=80)+(D6:D17>=80))>0))

Formula Breakdown:

  • (C6:C17 >= 80) checks each cell in the range C6:C17. If it’s greater than or equal to 80, it returns TRUE; otherwise, FALSE.
  • (D6:D17 >= 80) does the same for Chemistry.
  • (C6:C17 >= 80) + (D6:D17 >= 80) adds these two Boolean arrays, resulting in an array with values 0, 1, or 2.
  • ((C6:C17 >= 80) + (D6:D17 >= 80)) > 0 converts this array to TRUE (when the value is greater than 0) or FALSE (when the value is 0).
  • –(((C6:C17 >= 80) + (D6:D17 >= 80)) > 0) converts TRUE/FALSE to 1/0.
  • The result is 10, representing the number of students with at least 80 in either subject.
  • Press Enter.

Use SUMPRODUCT Function to Count Cells with Multiple OR Criteria

Read More: SUMPRODUCT for Counting with Multiple Criteria in Excel


Example 4 – Calculating Total Marks with a Criteria

Suppose you want to calculate the total marks of students in Physics, considering only marks greater than or equal to 80:

  • Click on cell F6.
  • Insert the formula:
=SUMPRODUCT(C6:C17,--(C6:C17>=80))

Formula Breakdown:

  • C6:C17 contains the marks in Physics.
  • –(C6:C17 >= 80) converts TRUE/FALSE to 1/0.
  • The result is 677, which is the total marks of students with scores at least 80 in Physics.
  • Press Enter.

Use SUMRPODUCT Function to Sum Total Marks with Specific Criteria


Example 5 – Using SUMPRODUCT-IF for Specific Criteria

Suppose you have sales data with item names, quantities, and unit prices. You want to find the total price of a specific item. Follow these steps:

  • Insert the desired item’s name in cell G5.

Sample Dataset to Apply SUMPRODUCT IF Formula

  • Click on cell H5 and insert the formula:
=SUMPRODUCT(IF($C$5:$C$17=$G$5,$D$5:$D$17*$E$5:$E$17))
  • Explanation:
    • IF($C$5:$C$17 = $G$5, $D$5:$D$17 * $E$5:$E$17) multiplies quantity and unit price only for the specified item.
    • The result is 6925, representing the total price of the special item.
  • Press Enter.

SUMPRODUCT IF Formula

Read More: How to Use SUMPRODUCT with Criteria in Excel


Example 6 – SUMPRODUCT with Multiple Criteria in Rows and Columns

Suppose you have a dataset of products with customer names and prices for January, February, and March. You want to calculate the total sales based on specific criteria. Follow these steps:

  • Insert your desired criteria in cells H5 and I5.

Dataset to Apply SUMPRODUCT in Multiple Rows and Columns

  • Click on cell J5 and insert the formula:
=SUMPRODUCT((C5:C13=H5)*(D4:F4=I5),D5:F13)
  • Explanation:
    • (C5:C13 = H5) checks if the customer’s name matches the desired criteria.
    • (D4:F4 = I5) checks if the month matches the desired criteria.
    • (C5:C13 = H5) * (D4:F4 = I5) multiplies these Boolean arrays.
    • The result is the total sales based on the specified criteria.
  • Press Enter.

SUMPRODUCT with Multiple Criteria in Rows and Columns

Read More: How to use SUMPRODUCT Function with Multiple Columns in Excel


Example 7 – Calculating Weighted Average

Suppose you have a dataset of student grading systems, including the weight of assessments and the marks obtained by each student. You want to calculate the weighted average for an individual. Follow these steps:

  • Click on the merged cell E5.

Marks Assessment System

  • Insert the formula:
=SUMPRODUCT(C5:C9*D5:D9)/SUM(C5:C9)
  • Explanation:
    • C5:C9 contains the weights of assessments.
    • D5:D9 contains the corresponding marks obtained.
    • SUMPRODUCT(C5:C9 * D5:D9) calculates the sum of products of weights and marks.
    • SUM(C5:C9) gives the total weight.
    • The result is a weighted average of 77.9 in cell E5.

Calculate Weighted Average with SUMPRODUCT Function

Thus, you will get a weighted average of 77.9 in cell E5.


Things to Remember

  • Remember that if an argument is of the wrong data type (not an array), Excel displays an #VALUE! error

Download Practice Workbook

You can download the practice workbook from here:


Excel SUMPRODUCT Function: Knowledge Hub


<< Go Back to Excel Functions | Learn Excel

Get FREE Advanced Excel Exercises with Solutions!
Rifat Hassan
Rifat Hassan

Rifat Hassan, BSc, Electrical and Electronic Engineering, Bangladesh University of Engineering and Technology, has worked with the ExcelDemy project for almost 2 years. Within these 2 years, he has written over 250 articles. He has also conducted a few Boot Camp sessions on effective coding, especially Visual Basic for Applications (VBA). Currently, he is working as a Software Developer to develop and deploy additional add-ins to enhance the customers with a more sophisticated experience with Microsoft Office Suits,... Read Full Bio

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo