Returns the sum of the products of the values in the specified arrays.
Syntax
Copy Code
|
|---|
SUMPRODUCT( ReferenceOrArray array1, [ReferenceOrArray array2], ... ) → Number |
All parameters shall have the same dimensions. Otherwise, the function will return the #VALUE! error value. SUMPRODUCT treats entries that are not numeric as if they were zeros.
Formula
Copy Code
|
|---|
=SUMPRODUCT(A1:B4,C1:D4) |