logo-mini

SUMPRODUCT Function

The SUMPRODUCT function in Excel is a powerful tool that allows users to multiply ranges or arrays together and then sum the results. This function is particularly useful when working with large data sets or when performing calculations involving multiple criteria.

To use the SUMPRODUCT function, the syntax is as follows:

=SUMPRODUCT(array1, array2, …)

The arrays can be a range of cells, a named range, or an array constant. It is important to note that the arrays must have the same dimensions in order for the function to work correctly.

One common use of the SUMPRODUCT function is to calculate a weighted average. For example, let’s say you have a list of test scores and the corresponding weights for each test. To calculate the weighted average, you would use the SUMPRODUCT function as follows:

=SUMPRODUCT(A2:A6,B2:B6)/SUM(B2:B6)

In this example, A2:A6 represents the range of test scores and B2:B6 represents the range of weights. The function first multiplies each test score by its corresponding weight, and then sums all of the results. Finally, it divides that sum by the total weight to get the weighted average.

Another common use of the SUMPRODUCT function is to count the number of occurrences of a specific value within a range. For example, let’s say you have a list of names and you want to count how many times the name “John” appears in the list. You could use the SUMPRODUCT function as follows:

=SUMPRODUCT((A2:A6=”John”))

In this example, A2:A6 is the range of names and the function checks to see if each cell in the range is equal to “John.” If it is, it returns a value of 1, and if not, it returns a value of 0. The function then sums all of the 1’s and 0’s to give the total number of occurrences of “John” in the list.

The SUMPRODUCT function can also be used in combination with other functions such as IF and AND. For example, let’s say you have a list of employee names, hours worked, and hourly rates, and you want to calculate the total pay for all employees who worked more than 40 hours. You could use the SUMPRODUCT function as follows:

=SUMPRODUCT((C2:C6>40),D2:D6)

In this example, C2:C6 is the range of hours worked and D2:D6 is the range of hourly rates. The function first checks to see if the number of hours worked in each cell is greater than 40. If it is, it returns a value of 1, and if not, it returns a value of 0. It then multiplies each hourly rate by the corresponding 1 or 0, and sums all of the results to give the total pay for all employees who worked more than 40 hours.

The SUMPRODUCT function can also be used with arrays. An array is a group of cells that share a common formula or value. To create an array, you enclose the cells in curly braces {}. For example, let’s say you have a list of names and you want to count how many times each name appears in the list. You could use the SUMPRODUCT function as follows:

=SUMPRODUCT((A2:A6={“John”,”Jane”,”Jim”}))

In this example, A2:A6 is the range of names and the array {“John”,”Jane”,”Jim”}

Download the sample files: SUMPRODUCT FUNCTION – Click here