logo
excelfunctions.org
bookmarks

SUMPRODUCT

Returns the sum of the products of corresponding array components.

Math & TrigonometryMath Basics

What it does

Multiplies arrays and sums the results (often used for multi-criteria logic).

Syntax

SUMPRODUCT(array1, [array2], ...)

Arguments

  • array1(range) β€” First array.

Examples

Weighted Average

Sum(Qty * Price).

FORMULA
=SUMPRODUCT(A2:A4, B2:B4)
RESULT
60
SAMPLE DATA
AB
1QtyPrice
2102
3201
454