SUMPRODUCTarray1
SUMPRODUCTarray1 is the first array argument in Excel’s SUMPRODUCT function. SUMPRODUCT multiplies corresponding elements of the supplied arrays and then sums those products. The array1 input is the primary data set used for the elementwise multiplication and can be a range, an array constant, or the result of an expression. If only array1 is provided, SUMPRODUCT simply returns the sum of its elements.
array1 can contain numbers, booleans (TRUE/FALSE, treated as 1/0 in numeric calculations), or values produced by
Typical usage: =SUMPRODUCT(A2:A5, B2:B5) returns the sum of products of each pair A2*B2 + A3*B3, and so
SUMPRODUCT with array1 is widely used for multi-criteria calculations and conditional sums. It works in modern